diff options
author | Juri Linkov <juri@jurta.org> | 2013-12-13 03:03:04 +0200 |
---|---|---|
committer | Juri Linkov <juri@jurta.org> | 2013-12-13 03:03:04 +0200 |
commit | 4a9c6865cba04b0bfb4518659f6c21224ff6fb3e (patch) | |
tree | 9dc646cf587acd64ebdd43c00b4917fe5b184f11 /lisp/bindings.el | |
parent | ce030451728326b438faae611f6d6e95ac8b82de (diff) | |
download | emacs-4a9c6865cba04b0bfb4518659f6c21224ff6fb3e.tar.gz |
* lisp/simple.el <Keypad support>: Remove key bindings duplicated with bindings.el.
Fixes: debbugs:14397
Diffstat (limited to 'lisp/bindings.el')
-rw-r--r-- | lisp/bindings.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/bindings.el b/lisp/bindings.el index c159f44eecd..4fa7c6daf82 100644 --- a/lisp/bindings.el +++ b/lisp/bindings.el @@ -1069,7 +1069,7 @@ if `inhibit-field-text-motion' is non-nil." (kp-enter enter) (kp-decimal ?.) (kp-0 ?0) (kp-1 ?1) (kp-2 ?2) (kp-3 ?3) (kp-4 ?4) (kp-5 ?5) (kp-6 ?6) (kp-7 ?7) (kp-8 ?8) (kp-9 ?9) - (kp-add +) (kp-subtract -) (kp-multiply *) (kp-divide /)))) + (kp-add ?+) (kp-subtract ?-) (kp-multiply ?*) (kp-divide ?/)))) (dolist (pair keys) (dolist (mod modifiers) (define-key function-key-map |