changeset 67375:77493abd2418

(button-buffer-map): Bind M-TAB to `backward-button'.
author Juri Linkov <juri@jurta.org>
date Thu, 08 Dec 2005 07:47:39 +0000
parents 91886d91f4c3
children a57102d7cc7e
files lisp/button.el
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/button.el	Thu Dec 08 07:45:51 2005 +0000
+++ b/lisp/button.el	Thu Dec 08 07:47:39 2005 +0000
@@ -69,6 +69,7 @@
 (defvar button-buffer-map
   (let ((map (make-sparse-keymap)))
     (define-key map [?\t] 'forward-button)
+    (define-key map "\e\t" 'backward-button)
     (define-key map [backtab] 'backward-button)
     map)
   "Keymap useful for buffers containing buttons.