Mercurial > emacs
changeset 14308:0ce52b2f2bb5
(simple-diary-display, fancy-diary-display): Pass proper format string to message.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Thu, 25 Jan 1996 00:52:17 +0000 |
parents | 8f846c3889c8 |
children | d546dc4e0c0b |
files | lisp/calendar/diary-lib.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/calendar/diary-lib.el Thu Jan 25 00:51:58 1996 +0000 +++ b/lisp/calendar/diary-lib.el Thu Jan 25 00:52:17 1996 +0000 @@ -385,7 +385,7 @@ (and (not (cdr diary-entries-list)) (string-equal (car (cdr (car diary-entries-list))) ""))) (if (<= (length msg) (frame-width)) - (message msg) + (message "%s" msg) (set-buffer (get-buffer-create holiday-buffer)) (setq buffer-read-only nil) (calendar-set-mode-line date-string) @@ -422,7 +422,7 @@ (concat date-string (if holiday-list ":" "")) (mapconcat 'identity holiday-list "; ")))) (if (<= (length msg) (frame-width)) - (message msg) + (message "%s" msg) (set-buffer (get-buffer-create holiday-buffer)) (setq buffer-read-only nil) (calendar-set-mode-line date-string)