]> git.eshelyaron.com Git - emacs.git/commitdiff
(picture-mode): Pass proper format string to message.
authorKarl Heuer <kwzh@gnu.org>
Thu, 25 Jan 1996 00:56:19 +0000 (00:56 +0000)
committerKarl Heuer <kwzh@gnu.org>
Thu, 25 Jan 1996 00:56:19 +0000 (00:56 +0000)
lisp/textmodes/picture.el

index 9dd63507ea1c647e3bdac31cc5982a00151f4568..d672ce0738de1c4fe3cd8f4594669782e2c2bd84 100644 (file)
@@ -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)