diff options
| author | Richard M. Stallman | 1995-11-13 03:20:37 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-11-13 03:20:37 +0000 |
| commit | 10fe2d3844a4a787ad31df4c1f8cedf1a0d30218 (patch) | |
| tree | e0dd774b8669a7b193371146dbbab514470b7279 | |
| parent | dd159a748e20e1977310e333a8e08e947a78746f (diff) | |
| download | emacs-10fe2d3844a4a787ad31df4c1f8cedf1a0d30218.tar.gz emacs-10fe2d3844a4a787ad31df4c1f8cedf1a0d30218.zip | |
(tmm-define-keys): Don't define ESC ESC.
| -rw-r--r-- | lisp/tmm.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/tmm.el b/lisp/tmm.el index 30845861c45..281b6a3d845 100644 --- a/lisp/tmm.el +++ b/lisp/tmm.el | |||
| @@ -75,7 +75,7 @@ See the documentation for `tmm-prompt'." | |||
| 75 | "Press PageUp Key to reach this buffer from the minibuffer. | 75 | "Press PageUp Key to reach this buffer from the minibuffer. |
| 76 | Alternatively, you can use Up/Down keys (or your History keys) to change | 76 | Alternatively, you can use Up/Down keys (or your History keys) to change |
| 77 | the item in the minibuffer, and press RET when you are done, or press the | 77 | the item in the minibuffer, and press RET when you are done, or press the |
| 78 | marked letters to pick up your choice. Type ESC ESC to cancel. | 78 | marked letters to pick up your choice. Type C-g or ESC ESC ESC to cancel. |
| 79 | " | 79 | " |
| 80 | "What insert on top of completion buffer.") | 80 | "What insert on top of completion buffer.") |
| 81 | 81 | ||
| @@ -186,7 +186,6 @@ Stores a list of all the shortcuts in the free variable `tmm-short-cuts'." | |||
| 186 | (define-key (current-local-map) [pageup] 'tmm-goto-completions) | 186 | (define-key (current-local-map) [pageup] 'tmm-goto-completions) |
| 187 | (define-key (current-local-map) [prior] 'tmm-goto-completions) | 187 | (define-key (current-local-map) [prior] 'tmm-goto-completions) |
| 188 | (define-key (current-local-map) "\ev" 'tmm-goto-completions) | 188 | (define-key (current-local-map) "\ev" 'tmm-goto-completions) |
| 189 | (define-key (current-local-map) "\e\e" 'abort-recursive-edit) | ||
| 190 | (define-key (current-local-map) "\C-n" 'next-history-element) | 189 | (define-key (current-local-map) "\C-n" 'next-history-element) |
| 191 | (define-key (current-local-map) "\C-p" 'previous-history-element)) | 190 | (define-key (current-local-map) "\C-p" 'previous-history-element)) |
| 192 | 191 | ||