From: Karl Heuer Date: Thu, 25 Jan 1996 00:56:19 +0000 (+0000) Subject: (picture-mode): Pass proper format string to message. X-Git-Tag: emacs-19.34~1536 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d55235bbdc94a5329d3a0f90e4b870e6f78969ae;p=emacs.git (picture-mode): Pass proper format string to message. --- diff --git a/lisp/textmodes/picture.el b/lisp/textmodes/picture.el index 9dd63507ea1..d672ce0738d 100644 --- a/lisp/textmodes/picture.el +++ b/lisp/textmodes/picture.el @@ -608,10 +608,9 @@ they are not defaultly assigned to keys." ;; edit-picture-hook is what we used to run, picture-mode-hook is in doc. (run-hooks 'edit-picture-hook 'picture-mode-hook) - (message - (substitute-command-keys - "Type \\[picture-mode-exit] in this buffer to return it to %s mode.") - picture-mode-old-mode-name))) + (message "Type %s in this buffer to return it to %s mode." + (substitute-command-keys "\\[picture-mode-exit]") + picture-mode-old-mode-name))) ;;;###autoload (defalias 'edit-picture 'picture-mode)