aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/terminal.el
diff options
context:
space:
mode:
authorKarl Heuer <[email protected]>1996-01-25 00:58:10 +0000
committerKarl Heuer <[email protected]>1996-01-25 00:58:10 +0000
commit8ea884c3fef0486ab88920330d2f60ef0c1242d6 (patch)
tree537a5e2b35675537625d36462c6d704c02abacb4 /lisp/terminal.el
parent4d656e4255ea340925a02014461973097a6394fc (diff)
(te-edit): Pass proper format string to message.
Diffstat (limited to 'lisp/terminal.el')
-rw-r--r--lisp/terminal.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/terminal.el b/lisp/terminal.el
index e2f8690513..2bbd3f9251 100644
--- a/lisp/terminal.el
+++ b/lisp/terminal.el
@@ -514,7 +514,8 @@ together with a command \\<terminal-edit-map>to return to terminal emulation: \\
;; Make mode line update.
(if (eq (key-binding "\C-c\C-c") 'terminal-cease-edit)
(message "Editing: Type C-c C-c to return to Terminal")
- (message (substitute-command-keys
+ (message "%s"
+ (substitute-command-keys
"Editing: Type \\[terminal-cease-edit] to return to Terminal"))))
(defun terminal-cease-edit ()