aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2010-08-02 02:13:02 +0200
committerStefan Monnier2010-08-02 02:13:02 +0200
commita7e26d8b89846dece4e4485f270def955a3460be (patch)
tree29de36c7aa4a88e8e9a0de09b5844e411e1d15ec
parentf5f6c0e0a7894f3b8879effe470b57f1564c98da (diff)
downloademacs-a7e26d8b89846dece4e4485f270def955a3460be.tar.gz
emacs-a7e26d8b89846dece4e4485f270def955a3460be.zip
* bindings.el (function-key-map): Add a S-tab => backtab fallback.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/bindings.el3
2 files changed, 7 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 73b5700aeb9..6d05931b146 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12010-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * bindings.el (function-key-map): Add a S-tab => backtab fallback.
4
12010-08-01 Juanma Barranquero <lekktu@gmail.com> 52010-08-01 Juanma Barranquero <lekktu@gmail.com>
2 6
3 * dabbrev.el (dabbrev-completion): Fix typo in docstring. 7 * dabbrev.el (dabbrev-completion): Fix typo in docstring.
diff --git a/lisp/bindings.el b/lisp/bindings.el
index 37ca3b86055..3ec43b3041f 100644
--- a/lisp/bindings.el
+++ b/lisp/bindings.el
@@ -1035,6 +1035,9 @@ or \\[semantic-mode]")))))
1035;; so we can't distinguish those two keys, but usually we consider C-SPC 1035;; so we can't distinguish those two keys, but usually we consider C-SPC
1036;; (rather than C-@) as the "canonical" binding. 1036;; (rather than C-@) as the "canonical" binding.
1037(define-key function-key-map [?\C-@] [?\C-\s]) 1037(define-key function-key-map [?\C-@] [?\C-\s])
1038;; Many keyboards don't have a `backtab' key, so by convention the user
1039;; can use S-tab instead to access that binding.
1040(define-key function-key-map [S-tab] [backtab])
1038 1041
1039(define-key global-map [mouse-movement] 'ignore) 1042(define-key global-map [mouse-movement] 'ignore)
1040 1043