1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-04 11:00:45 -08:00

(te-escape): Show `?' in prompt for help key.

This commit is contained in:
Eli Zaretskii 2004-09-04 13:17:34 +00:00
parent 23f87bede0
commit 0721fbe3c2
2 changed files with 10 additions and 2 deletions

View file

@ -209,9 +209,13 @@ performance."
(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))