From: Chong Yidong Date: Sat, 19 Jun 2010 18:02:41 +0000 (-0400) Subject: * keymap.c (Fdefine_key): Doc fix (Bug#6460). X-Git-Tag: emacs-pretest-23.2.90~139^2~116 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=277c5f18026217608e4ca773e5a74899b46d4575;p=emacs.git * keymap.c (Fdefine_key): Doc fix (Bug#6460). --- diff --git a/src/ChangeLog b/src/ChangeLog index 26c95ae77ed..680f364a1fa 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2010-06-19 Chong Yidong + + * keymap.c (Fdefine_key): Doc fix (Bug#6460). + 2010-06-15 Glenn Morris * editfns.c (Fbyte_to_string): Pacify compiler. diff --git a/src/keymap.c b/src/keymap.c index 53b6795d623..b5efd12cd6e 100644 --- a/src/keymap.c +++ b/src/keymap.c @@ -1175,11 +1175,13 @@ DEFUN ("define-key", Fdefine_key, Sdefine_key, 3, 3, 0, doc: /* In KEYMAP, define key sequence KEY as DEF. KEYMAP is a keymap. -KEY is a string or a vector of symbols and characters meaning a +KEY is a string or a vector of symbols and characters, representing a sequence of keystrokes and events. Non-ASCII characters with codes -above 127 (such as ISO Latin-1) can be included if you use a vector. -Using [t] for KEY creates a default definition, which applies to any -event type that has no other definition in this keymap. +above 127 (such as ISO Latin-1) can be represented by vectors. +Two types of vector have special meanings: + [remap COMMAND] remaps any key binding for COMMAND in KEYMAP. + [t] creates a default definition, which applies to any event with no + other definition in KEYMAP. DEF is anything that can be a key's definition: nil (means key is undefined in this keymap),