From: Karl Heuer Date: Thu, 25 Jan 1996 00:58:10 +0000 (+0000) Subject: (te-edit): Pass proper format string to message. X-Git-Tag: emacs-19.34~1527 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8ea884c3fef0486ab88920330d2f60ef0c1242d6;p=emacs.git (te-edit): Pass proper format string to message. --- diff --git a/lisp/terminal.el b/lisp/terminal.el index e2f86905134..2bbd3f92516 100644 --- a/lisp/terminal.el +++ b/lisp/terminal.el @@ -514,7 +514,8 @@ together with a command \\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 ()