Mercurial > emacs
changeset 49901:71b3917cf40b
(Fdefine_key): Doc fix.
author | Kai Großjohann <kgrossjo@eu.uu.net> |
---|---|
date | Fri, 21 Feb 2003 16:34:59 +0000 |
parents | f2039eaf90bb |
children | 7efa3eeb04ec |
files | src/ChangeLog src/keymap.c |
diffstat | 2 files changed, 7 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/ChangeLog Fri Feb 21 16:33:24 2003 +0000 +++ b/src/ChangeLog Fri Feb 21 16:34:59 2003 +0000 @@ -1,3 +1,7 @@ +2003-02-21 Kai Gro,A_(Bjohann <kai.grossjohann@uni-duisburg.de> + + * keymap.c (Fdefine_key): Doc fix. + 2003-02-21 Juanma Barranquero <lektu@terra.es> Port of patch for RC by Klaus Zeitler <kzeitler@lucent.com>.
--- a/src/keymap.c Fri Feb 21 16:33:24 2003 +0000 +++ b/src/keymap.c Fri Feb 21 16:34:59 2003 +0000 @@ -988,8 +988,9 @@ (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;