diff options
Diffstat (limited to 'src/keymap.c')
| -rw-r--r-- | src/keymap.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/keymap.c b/src/keymap.c index 5786235f3f3..3630bf76368 100644 --- a/src/keymap.c +++ b/src/keymap.c | |||
| @@ -1078,15 +1078,15 @@ event type that has no other definition in this keymap. | |||
| 1078 | 1078 | ||
| 1079 | DEF is anything that can be a key's definition: | 1079 | DEF is anything that can be a key's definition: |
| 1080 | nil (means key is undefined in this keymap), | 1080 | nil (means key is undefined in this keymap), |
| 1081 | a command (a Lisp function suitable for interactive calling) | 1081 | a command (a Lisp function suitable for interactive calling), |
| 1082 | a string (treated as a keyboard macro), | 1082 | a string (treated as a keyboard macro), |
| 1083 | a keymap (to define a prefix key), | 1083 | a keymap (to define a prefix key), |
| 1084 | a symbol. When the key is looked up, the symbol will stand for its | 1084 | a symbol (when the key is looked up, the symbol will stand for its |
| 1085 | function definition, which should at that time be one of the above, | 1085 | function definition, which should at that time be one of the above, |
| 1086 | or another symbol whose function definition is used, etc. | 1086 | or another symbol whose function definition is used, etc.), |
| 1087 | a cons (STRING . DEFN), meaning that DEFN is the definition | 1087 | a cons (STRING . DEFN), meaning that DEFN is the definition |
| 1088 | (DEFN should be a valid definition in its own right), | 1088 | (DEFN should be a valid definition in its own right), |
| 1089 | or a cons (KEYMAP . CHAR), meaning use definition of CHAR in map KEYMAP. | 1089 | or a cons (MAP . CHAR), meaning use definition of CHAR in keymap MAP. |
| 1090 | 1090 | ||
| 1091 | If KEYMAP is a sparse keymap with a binding for KEY, the existing | 1091 | If KEYMAP is a sparse keymap with a binding for KEY, the existing |
| 1092 | binding is altered. If there is no binding for KEY, the new pair | 1092 | binding is altered. If there is no binding for KEY, the new pair |