aboutsummaryrefslogtreecommitdiffstats
path: root/src/keymap.c
diff options
context:
space:
mode:
authorJuanma Barranquero2004-05-22 01:52:56 +0000
committerJuanma Barranquero2004-05-22 01:52:56 +0000
commitf63fd14ef3045ed0390707e919ea16e5c356b7e8 (patch)
treeb0f0c277b509582036debd17502034fc9f73b9e0 /src/keymap.c
parent080e18b104328c5f66b87429562f093029084f1e (diff)
downloademacs-f63fd14ef3045ed0390707e919ea16e5c356b7e8.tar.gz
emacs-f63fd14ef3045ed0390707e919ea16e5c356b7e8.zip
(Fdefine_key): Doc fix.
Diffstat (limited to 'src/keymap.c')
-rw-r--r--src/keymap.c8
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
1079DEF is anything that can be a key's definition: 1079DEF 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
1091If KEYMAP is a sparse keymap with a binding for KEY, the existing 1091If KEYMAP is a sparse keymap with a binding for KEY, the existing
1092binding is altered. If there is no binding for KEY, the new pair 1092binding is altered. If there is no binding for KEY, the new pair