summaryrefslogtreecommitdiff
path: root/lisp/button.el
diff options
context:
space:
mode:
authorJuri Linkov <juri@jurta.org>2005-12-08 07:47:39 +0000
committerJuri Linkov <juri@jurta.org>2005-12-08 07:47:39 +0000
commit272199aeedc64044b026c6e3d843e94e1a4a478e (patch)
tree0006af14544105af49bed79e2fb5c41636526cf5 /lisp/button.el
parenta0c64f02e25daa75f740c6cf0e98c91dac20689f (diff)
downloademacs-272199aeedc64044b026c6e3d843e94e1a4a478e.tar.gz
(button-buffer-map): Bind M-TAB to `backward-button'.
Diffstat (limited to 'lisp/button.el')
-rw-r--r--lisp/button.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/button.el b/lisp/button.el
index d58e53c2895..375182dd36b 100644
--- a/lisp/button.el
+++ b/lisp/button.el
@@ -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.