From: Karl Heuer Date: Thu, 25 Jan 1996 00:54:50 +0000 (+0000) Subject: (calendar-cursor-holidays): Pass proper format string to message. X-Git-Tag: emacs-19.34~1542 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=eec5a2e4bbde9d80679c90d9a04e81b7970ec3f9;p=emacs.git (calendar-cursor-holidays): Pass proper format string to message. --- 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." (if (not holiday-list) (message "No holidays known for %s" date-string) (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)