(button-buffer-map): Bind M-TAB to `backward-button'.

This commit is contained in:
Juri Linkov 2005-12-08 07:47:39 +00:00
parent a0c64f02e2
commit 272199aeed

View file

@ -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.