From: Richard M. Stallman Date: Mon, 13 Nov 1995 03:20:37 +0000 (+0000) Subject: (tmm-define-keys): Don't define ESC ESC. X-Git-Tag: emacs-19.34~2327 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=10fe2d3844a4a787ad31df4c1f8cedf1a0d30218;p=emacs.git (tmm-define-keys): Don't define ESC ESC. --- 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'." "Press PageUp Key to reach this buffer from the minibuffer. Alternatively, you can use Up/Down keys (or your History keys) to change the item in the minibuffer, and press RET when you are done, or press the -marked letters to pick up your choice. Type ESC ESC to cancel. +marked letters to pick up your choice. Type C-g or ESC ESC ESC to cancel. " "What insert on top of completion buffer.") @@ -186,7 +186,6 @@ Stores a list of all the shortcuts in the free variable `tmm-short-cuts'." (define-key (current-local-map) [pageup] 'tmm-goto-completions) (define-key (current-local-map) [prior] 'tmm-goto-completions) (define-key (current-local-map) "\ev" 'tmm-goto-completions) - (define-key (current-local-map) "\e\e" 'abort-recursive-edit) (define-key (current-local-map) "\C-n" 'next-history-element) (define-key (current-local-map) "\C-p" 'previous-history-element))