summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1994-12-05 11:01:40 +0000
committerRichard M. Stallman <rms@gnu.org>1994-12-05 11:01:40 +0000
commitccdad29afdc100b3d5b540689fa8edc917c6634b (patch)
treea36d381baafc75e08ecf359d22903182416069d3
parent3215a8e46ecb06bdfafa81a14225e7c32c3b1741 (diff)
downloademacs-ccdad29afdc100b3d5b540689fa8edc917c6634b.tar.gz
(electric-buffer-menu-mode-map):
Bind ESC ESC ESC to Electric-buffer-menu-quit.
-rw-r--r--lisp/ebuff-menu.el2
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/ebuff-menu.el b/lisp/ebuff-menu.el
index bdbd77e5c40..4bc0749a025 100644
--- a/lisp/ebuff-menu.el
+++ b/lisp/ebuff-menu.el
@@ -195,6 +195,8 @@ electric-buffer-menu-mode-hook if it is non-nil."
(define-key map "\e\C-v" 'scroll-other-window)
(define-key map "\e>" 'end-of-buffer)
(define-key map "\e<" 'beginning-of-buffer)
+ (define-key map "\e\e\e" 'Electric-buffer-menu-quit)
+ (define-key map [escape escape escape] 'Electric-buffer-menu-quit)
(define-key map [mouse-2] 'Electric-buffer-menu-mouse-select)
(setq electric-buffer-menu-mode-map map)))