diff options
| author | Karl Heuer | 1996-01-25 00:54:50 +0000 |
|---|---|---|
| committer | Karl Heuer | 1996-01-25 00:54:50 +0000 |
| commit | eec5a2e4bbde9d80679c90d9a04e81b7970ec3f9 (patch) | |
| tree | 775a39e9afa096bc5bd1c7176d981abbe1cebb2c | |
| parent | 32561aba5f912cfdf879ccd01b1e3fbbc77c25e3 (diff) | |
| download | emacs-eec5a2e4bbde9d80679c90d9a04e81b7970ec3f9.tar.gz emacs-eec5a2e4bbde9d80679c90d9a04e81b7970ec3f9.zip | |
(calendar-cursor-holidays): Pass proper format string to message.
| -rw-r--r-- | lisp/calendar/holidays.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/calendar/holidays.el b/lisp/calendar/holidays.el index 0db35307aa9..70fe3e5a50e 100644 --- a/lisp/calendar/holidays.el +++ b/lisp/calendar/holidays.el | |||
| @@ -127,7 +127,7 @@ The holidays are those in the list calendar-holidays." | |||
| 127 | (if (not holiday-list) | 127 | (if (not holiday-list) |
| 128 | (message "No holidays known for %s" date-string) | 128 | (message "No holidays known for %s" date-string) |
| 129 | (if (<= (length msg) (frame-width)) | 129 | (if (<= (length msg) (frame-width)) |
| 130 | (message msg) | 130 | (message "%s" msg) |
| 131 | (set-buffer (get-buffer-create holiday-buffer)) | 131 | (set-buffer (get-buffer-create holiday-buffer)) |
| 132 | (setq buffer-read-only nil) | 132 | (setq buffer-read-only nil) |
| 133 | (calendar-set-mode-line date-string) | 133 | (calendar-set-mode-line date-string) |