diff options
| author | Karl Heuer | 1996-01-25 00:58:10 +0000 |
|---|---|---|
| committer | Karl Heuer | 1996-01-25 00:58:10 +0000 |
| commit | 8ea884c3fef0486ab88920330d2f60ef0c1242d6 (patch) | |
| tree | 537a5e2b35675537625d36462c6d704c02abacb4 | |
| parent | 4d656e4255ea340925a02014461973097a6394fc (diff) | |
| download | emacs-8ea884c3fef0486ab88920330d2f60ef0c1242d6.tar.gz emacs-8ea884c3fef0486ab88920330d2f60ef0c1242d6.zip | |
(te-edit): Pass proper format string to message.
| -rw-r--r-- | lisp/terminal.el | 3 |
1 files changed, 2 insertions, 1 deletions
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 \\<terminal-edit-map>to return to terminal emulation: \\ | |||
| 514 | ;; Make mode line update. | 514 | ;; Make mode line update. |
| 515 | (if (eq (key-binding "\C-c\C-c") 'terminal-cease-edit) | 515 | (if (eq (key-binding "\C-c\C-c") 'terminal-cease-edit) |
| 516 | (message "Editing: Type C-c C-c to return to Terminal") | 516 | (message "Editing: Type C-c C-c to return to Terminal") |
| 517 | (message (substitute-command-keys | 517 | (message "%s" |
| 518 | (substitute-command-keys | ||
| 518 | "Editing: Type \\[terminal-cease-edit] to return to Terminal")))) | 519 | "Editing: Type \\[terminal-cease-edit] to return to Terminal")))) |
| 519 | 520 | ||
| 520 | (defun terminal-cease-edit () | 521 | (defun terminal-cease-edit () |