diff options
| author | Richard M. Stallman | 1994-02-04 06:46:02 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-02-04 06:46:02 +0000 |
| commit | bc69c9c292fbd3a2db9eeaf59f244c7f77c39d56 (patch) | |
| tree | c9132459ea6a73401b1bb848c3477695e9a2c339 | |
| parent | 16f635545126842f3c732cc7300c92b866d7c826 (diff) | |
| download | emacs-bc69c9c292fbd3a2db9eeaf59f244c7f77c39d56.tar.gz emacs-bc69c9c292fbd3a2db9eeaf59f244c7f77c39d56.zip | |
(te-escape-help, te-more-break-help, terminal-emulator):
Pass just one KEYMAP arg to where-is-internal.
| -rw-r--r-- | lisp/terminal.el | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/lisp/terminal.el b/lisp/terminal.el index 195fc6321c1..256e51dcb70 100644 --- a/lisp/terminal.el +++ b/lisp/terminal.el | |||
| @@ -202,7 +202,7 @@ Other chars following \"%s\" are interpreted as follows:\n" | |||
| 202 | (princ (substitute-command-keys "\\{terminal-escape-map}\n")) | 202 | (princ (substitute-command-keys "\\{terminal-escape-map}\n")) |
| 203 | (princ (format "\nSubcommands of \"%s\" (%s)\n" | 203 | (princ (format "\nSubcommands of \"%s\" (%s)\n" |
| 204 | (where-is-internal 'te-escape-extended-command | 204 | (where-is-internal 'te-escape-extended-command |
| 205 | terminal-escape-map nil t) | 205 | terminal-escape-map t) |
| 206 | 'te-escape-extended-command)) | 206 | 'te-escape-extended-command)) |
| 207 | (let ((l (if (fboundp 'sortcar) | 207 | (let ((l (if (fboundp 'sortcar) |
| 208 | (sortcar (copy-sequence te-escape-command-alist) | 208 | (sortcar (copy-sequence te-escape-command-alist) |
| @@ -377,7 +377,7 @@ allowing the next page of output to appear" | |||
| 377 | (princ "Terminal-emulator more break.\n\n") | 377 | (princ "Terminal-emulator more break.\n\n") |
| 378 | (princ (format "Type \"%s\" (te-more-break-resume)\n%s\n" | 378 | (princ (format "Type \"%s\" (te-more-break-resume)\n%s\n" |
| 379 | (where-is-internal 'te-more-break-resume | 379 | (where-is-internal 'te-more-break-resume |
| 380 | terminal-more-break-map nil t) | 380 | terminal-more-break-map t) |
| 381 | (documentation 'te-more-break-resume))) | 381 | (documentation 'te-more-break-resume))) |
| 382 | (princ (substitute-command-keys "\\{terminal-more-break-map}\n")) | 382 | (princ (substitute-command-keys "\\{terminal-more-break-map}\n")) |
| 383 | (princ "Any other key is passed through to the program | 383 | (princ "Any other key is passed through to the program |
| @@ -1140,9 +1140,7 @@ work with `terminfo' we will try to use it." | |||
| 1140 | (message "Entering emacs terminal-emulator... Type %s %s for help" | 1140 | (message "Entering emacs terminal-emulator... Type %s %s for help" |
| 1141 | (single-key-description terminal-escape-char) | 1141 | (single-key-description terminal-escape-char) |
| 1142 | (mapconcat 'single-key-description | 1142 | (mapconcat 'single-key-description |
| 1143 | (where-is-internal 'te-escape-help | 1143 | (where-is-internal 'te-escape-help terminal-escape-map t) |
| 1144 | terminal-escape-map | ||
| 1145 | nil t) | ||
| 1146 | " "))) | 1144 | " "))) |
| 1147 | 1145 | ||
| 1148 | 1146 | ||