aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/bindings.el
diff options
context:
space:
mode:
authorChong Yidong <[email protected]>2010-08-08 17:12:29 -0400
committerChong Yidong <[email protected]>2010-08-08 17:12:29 -0400
commit7815fe1985833c57457882b415a29358991dabdc (patch)
treeab8aabf9ad322c149a6434712c14b93bb93543dc /lisp/bindings.el
parent25717ca11cae32e191e3dc9318562190d682f425 (diff)
parente54a1075033073f835596ab666eeed099028beb8 (diff)
Merge changes from emacs-23 branch
Diffstat (limited to 'lisp/bindings.el')
-rw-r--r--lisp/bindings.el3
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/bindings.el b/lisp/bindings.el
index 4eab37edf4..eba6bf7a78 100644
--- a/lisp/bindings.el
+++ b/lisp/bindings.el
@@ -1054,6 +1054,9 @@ if `inhibit-field-text-motion' is non-nil."
;; so we can't distinguish those two keys, but usually we consider C-SPC
;; (rather than C-@) as the "canonical" binding.
(define-key function-key-map [?\C-@] [?\C-\s])
+;; Many keyboards don't have a `backtab' key, so by convention the user
+;; can use S-tab instead to access that binding.
+(define-key function-key-map [S-tab] [backtab])
(define-key global-map [mouse-movement] 'ignore)