From: Karl Heuer Date: Fri, 7 May 1999 09:42:50 +0000 (+0000) Subject: (with-temp-message): Fix the other call to message to use %s. X-Git-Tag: emacs-20.4~250 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=aadf7ff324d103269e56ed16a0e912f3789e1397;p=emacs.git (with-temp-message): Fix the other call to message to use %s. --- diff --git a/lisp/subr.el b/lisp/subr.el index 738b8994c3f..c2464c942f1 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -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))))))