1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-01 11:14:55 +00:00

(function-key-map): Don't bind shifted keypad numeric keys.

This commit is contained in:
Eli Zaretskii 2002-01-02 13:46:25 +00:00
parent cf393f9be7
commit 7bc6015401
2 changed files with 16 additions and 8 deletions

View File

@ -1,3 +1,8 @@
2002-01-02 Eli Zaretskii <eliz@is.elta.co.il>
* bindings.el (function-key-map): Don't bind shifted keypad
numeric keys.
2002-01-02 Pavel Jan,Bm(Bk <Pavel@Janik.cz>
* enriched.el (enriched-handle-display-prop): Remove unused

View File

@ -830,14 +830,17 @@ language you are using."
(define-key function-key-map [C-S-kp-home] [C-S-home])
(define-key function-key-map [C-S-kp-up] [C-S-up])
(define-key function-key-map [C-S-kp-prior] [C-S-prior])
(define-key function-key-map [S-kp-1] [S-end])
(define-key function-key-map [S-kp-2] [S-down])
(define-key function-key-map [S-kp-3] [S-next])
(define-key function-key-map [S-kp-4] [S-left])
(define-key function-key-map [S-kp-6] [S-right])
(define-key function-key-map [S-kp-7] [S-home])
(define-key function-key-map [S-kp-8] [S-up])
(define-key function-key-map [S-kp-9] [S-prior])
;; Don't bind shifted keypad numeric keys, they reportedly
;; interfere with the feature of some keyboards to produce
;; numbers when NumLock is off.
;(define-key function-key-map [S-kp-1] [S-end])
;(define-key function-key-map [S-kp-2] [S-down])
;(define-key function-key-map [S-kp-3] [S-next])
;(define-key function-key-map [S-kp-4] [S-left])
;(define-key function-key-map [S-kp-6] [S-right])
;(define-key function-key-map [S-kp-7] [S-home])
;(define-key function-key-map [S-kp-8] [S-up])
;(define-key function-key-map [S-kp-9] [S-prior])
(define-key function-key-map [C-S-kp-1] [C-S-end])
(define-key function-key-map [C-S-kp-2] [C-S-down])
(define-key function-key-map [C-S-kp-3] [C-S-next])