]> git.eshelyaron.com Git - emacs.git/commitdiff
(te-escape): Show `?' in prompt for help key.
authorEli Zaretskii <eliz@gnu.org>
Sat, 4 Sep 2004 13:17:34 +0000 (13:17 +0000)
committerEli Zaretskii <eliz@gnu.org>
Sat, 4 Sep 2004 13:17:34 +0000 (13:17 +0000)
lisp/ChangeLog
lisp/terminal.el

index dd83a9524e2644e477000eb80b97fbeff7de3d9a..85f2ae468de54b04ca7952615a283a8f9339b1aa 100644 (file)
@@ -1,3 +1,7 @@
+2004-09-04  Jari Aalto  <jari.aalto@poboxes.com>
+
+       * terminal.el (te-escape): Show `?' in prompt for help key.
+
 2004-09-04  Emilio C. Lopes <eclig@gmx.net>
 
        * emacs-lisp/lisp.el (kill-backward-up-list): New function.
index 64c58d7743d16948990585a436e6d462633dfe66..d33ba914cd3524fa6fd849dc405dee32cd364448 100644 (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))