Mercurial > emacs
changeset 56928:b1d0e8312180
(te-escape): Show `?' in prompt for help key.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Sat, 04 Sep 2004 13:15:04 +0000 |
parents | 55fd4f77387a |
children | f2a19288ee51 |
files | lisp/terminal.el |
diffstat | 1 files changed, 6 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/terminal.el Sat Sep 04 13:13:48 2004 +0000 +++ b/lisp/terminal.el Sat Sep 04 13:15:04 2004 +0000 @@ -209,9 +209,13 @@ (use-local-map terminal-escape-map) (setq s (read-key-sequence (if current-prefix-arg - (format "Emacs Terminal escape> %d " + (format "Emacs Terminal escape[%s for help]> %d " + (substitute-command-keys + "\\<terminal-escape-map>\\[te-escape-help]") (prefix-numeric-value current-prefix-arg)) - "Emacs Terminal escape> ")))) + (format "Emacs Terminal escape[%s for help]> " + (substitute-command-keys + "\\<terminal-escape-map>\\[te-escape-help]")))))) (use-global-map global) (use-local-map local))