1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-27 16:51:06 -07:00

(with-temp-message): Fix the other call to message to use %s.

This commit is contained in:
Karl Heuer 1999-05-07 09:42:50 +00:00
parent 9cc68f101e
commit aadf7ff324

View file

@ -974,7 +974,7 @@ Use a MESSAGE of \"\" to temporarily clear the echo area."
(progn
(when ,temp-message
(setq ,current-message (current-message))
(message ,temp-message))
(message "%s" ,temp-message))
,@body)
(and ,temp-message ,current-message
(message "%s" ,current-message))))))