aboutsummaryrefslogtreecommitdiffstats
path: root/src/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/keymap.c')
-rw-r--r--src/keymap.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/keymap.c b/src/keymap.c
index 1245caf3b9b..40005a51008 100644
--- a/src/keymap.c
+++ b/src/keymap.c
@@ -1126,11 +1126,13 @@ DEFUN ("define-key", Fdefine_key, Sdefine_key, 3, 3, 0,
1126 doc: /* In KEYMAP, define key sequence KEY as DEF. 1126 doc: /* In KEYMAP, define key sequence KEY as DEF.
1127KEYMAP is a keymap. 1127KEYMAP is a keymap.
1128 1128
1129KEY is a string or a vector of symbols and characters meaning a 1129KEY is a string or a vector of symbols and characters, representing a
1130sequence of keystrokes and events. Non-ASCII characters with codes 1130sequence of keystrokes and events. Non-ASCII characters with codes
1131above 127 (such as ISO Latin-1) can be included if you use a vector. 1131above 127 (such as ISO Latin-1) can be represented by vectors.
1132Using [t] for KEY creates a default definition, which applies to any 1132Two types of vector have special meanings:
1133event type that has no other definition in this keymap. 1133 [remap COMMAND] remaps any key binding for COMMAND.
1134 [t] creates a default definition, which applies to any event with no
1135 other definition in KEYMAP.
1134 1136
1135DEF is anything that can be a key's definition: 1137DEF is anything that can be a key's definition:
1136 nil (means key is undefined in this keymap), 1138 nil (means key is undefined in this keymap),