From: Kenichi Handa Date: Sat, 23 Sep 2006 05:37:18 +0000 (+0000) Subject: (Fmap_keymap): Docstring mentions about generic X-Git-Tag: emacs-pretest-22.0.90~388 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b50685893e18fab719e836b97272e5e0f7155931;p=emacs.git (Fmap_keymap): Docstring mentions about generic character. --- diff --git a/src/keymap.c b/src/keymap.c index a6cccfabcbb..aad586ab1d0 100644 --- a/src/keymap.c +++ b/src/keymap.c @@ -750,7 +750,10 @@ map_keymap_call (key, val, fun, dummy) DEFUN ("map-keymap", Fmap_keymap, Smap_keymap, 2, 3, 0, doc: /* Call FUNCTION once for each event binding in KEYMAP. FUNCTION is called with two arguments: the event that is bound, and -the definition it is bound to. +the definition it is bound to. If the event is an integer, it may be +a generic character (see Info node `(elisp)Splitting Characters'), and +that means that all actual character events belonging to that generic +character are bound to the definition. If KEYMAP has a parent, the parent's bindings are included as well. This works recursively: if the parent has itself a parent, then the