aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/textmodes/picture.el
diff options
context:
space:
mode:
authorKarl Heuer <[email protected]>1996-01-25 00:56:19 +0000
committerKarl Heuer <[email protected]>1996-01-25 00:56:19 +0000
commitd55235bbdc94a5329d3a0f90e4b870e6f78969ae (patch)
tree3c379ec23eb3ffbe164313515d2d43015359fdc7 /lisp/textmodes/picture.el
parentb705df89e76de1fe1d2a6c4fd50c7f07570328ba (diff)
(picture-mode): Pass proper format string to message.
Diffstat (limited to 'lisp/textmodes/picture.el')
-rw-r--r--lisp/textmodes/picture.el7
1 files changed, 3 insertions, 4 deletions
diff --git a/lisp/textmodes/picture.el b/lisp/textmodes/picture.el
index 9dd63507ea..d672ce0738 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)