From: Kai Großjohann Date: Fri, 21 Feb 2003 16:34:59 +0000 (+0000) Subject: (Fdefine_key): Doc fix. X-Git-Tag: ttn-vms-21-2-B4~11099 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3abeca61dcf1b90feb565cbf682619df764469b0;p=emacs.git (Fdefine_key): Doc fix. --- diff --git a/src/ChangeLog b/src/ChangeLog index 2f13a3f625a..9d9d40a26df 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2003-02-21 Kai Gro,A_(Bjohann + + * keymap.c (Fdefine_key): Doc fix. + 2003-02-21 Juanma Barranquero Port of patch for RC by Klaus Zeitler . diff --git a/src/keymap.c b/src/keymap.c index 9820d03f80b..4c00b0c0583 100644 --- a/src/keymap.c +++ b/src/keymap.c @@ -988,8 +988,9 @@ DEF is anything that can be a key's definition: (DEFN should be a valid definition in its own right), or a cons (KEYMAP . CHAR), meaning use definition of CHAR in map KEYMAP. -If KEYMAP is a sparse keymap, the pair binding KEY to DEF is added at -the front of KEYMAP. */) +If KEYMAP is a sparse keymap with a binding for KEY, the existing +binding is altered. If there is no binding for KEY, the new pair +binding KEY to DEF is added at the front of KEYMAP. */) (keymap, key, def) Lisp_Object keymap; Lisp_Object key;