summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKim F. Storm <storm@cua.dk>2002-09-14 20:54:07 +0000
committerKim F. Storm <storm@cua.dk>2002-09-14 20:54:07 +0000
commitf31023f9902b6d5310346905da47dfbc81bb5ffa (patch)
tree87aaac39e1dfbbe40dcc99ef66d95a460e3d523f
parentd83b86d85f4125c3da6a61415d70e760b2930f00 (diff)
downloademacs-f31023f9902b6d5310346905da47dfbc81bb5ffa.tar.gz
(keypad-setup, keypad-shifted-setup)
(keypad-numlock-setup, keypad-numlock-shifted-setup): Change `Remove Binding' option to `Unspecified/User-defined'. (keypad-setup): Enhance explanation of setup type `none'.
-rw-r--r--lisp/emulation/keypad.el12
1 files changed, 7 insertions, 5 deletions
diff --git a/lisp/emulation/keypad.el b/lisp/emulation/keypad.el
index f9b73f4f1d7..c638409613f 100644
--- a/lisp/emulation/keypad.el
+++ b/lisp/emulation/keypad.el
@@ -116,7 +116,7 @@ decimal key must be specified."
(const :tag "Numeric prefix arguments" prefix)
(const :tag "Cursor keys" cursor)
(const :tag "Shifted cursor keys" S-cursor)
- (const :tag "Remove bindings" none)
+ (const :tag "Unspecified/User-defined" none)
(other :tag "Keep existing bindings" nil))
:require 'keypad
:group 'keyboard)
@@ -139,7 +139,7 @@ decimal key must be specified."
(const :tag "Numeric prefix arguments" prefix)
(const :tag "Cursor keys" cursor)
(const :tag "Shifted cursor keys" S-cursor)
- (const :tag "Remove bindings" none)
+ (const :tag "Unspecified/User-defined" none)
(other :tag "Keep existing bindings" nil))
:require 'keypad
:group 'keyboard)
@@ -162,7 +162,7 @@ decimal key must be specified."
(const :tag "Numeric prefix arguments" prefix)
(const :tag "Cursor keys" cursor)
(const :tag "Shifted cursor keys" S-cursor)
- (const :tag "Remove bindings" none)
+ (const :tag "Unspecified/User-defined" none)
(other :tag "Keep existing bindings" nil))
:require 'keypad
:group 'keyboard)
@@ -185,7 +185,7 @@ decimal key must be specified."
(const :tag "Numeric prefix arguments" prefix)
(const :tag "Cursor keys" cursor)
(const :tag "Shifted cursor keys" S-cursor)
- (const :tag "Remove bindings" none)
+ (const :tag "Unspecified/User-defined" none)
(other :tag "Keep existing bindings" nil))
:require 'keypad
:group 'keyboard)
@@ -205,7 +205,9 @@ keys are bound.
'S-cursor Bind shifted keypad keys to the shifted cursor movement keys.
'cursor Bind keypad keys to the cursor movement keys.
'numeric Plain numeric keypad, i.e. 0 .. 9 and . (or DECIMAL arg)
- 'none Removes all bindings for keypad keys in function-key-map.
+ 'none Removes all bindings for keypad keys in function-key-map;
+ this enables any user-defined bindings for the keypad keys
+ in the global and local keymaps.
If SETUP is 'numeric and the optional fourth argument DECIMAL is non-nil,
the decimal key on the keypad is mapped to DECIMAL instead of `.'"