aboutsummaryrefslogtreecommitdiffstats
path: root/src/keymap.c
diff options
context:
space:
mode:
authorRichard M. Stallman2006-01-19 17:41:40 +0000
committerRichard M. Stallman2006-01-19 17:41:40 +0000
commit05f5847bd2d121aa5b920bf08f12a80ef5b23327 (patch)
treecece9bfea8c4731128c2add751a9a7aa0f197719 /src/keymap.c
parent77c0df4f2707e97fcf341d1e7ea3ede70022acdd (diff)
downloademacs-05f5847bd2d121aa5b920bf08f12a80ef5b23327.tar.gz
emacs-05f5847bd2d121aa5b920bf08f12a80ef5b23327.zip
(Fmap_keymap): Doc fix.
Diffstat (limited to 'src/keymap.c')
-rw-r--r--src/keymap.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/keymap.c b/src/keymap.c
index 8f462b3af73..0c44a112e01 100644
--- a/src/keymap.c
+++ b/src/keymap.c
@@ -743,8 +743,10 @@ map_keymap_call (key, val, fun, dummy)
743} 743}
744 744
745DEFUN ("map-keymap", Fmap_keymap, Smap_keymap, 2, 3, 0, 745DEFUN ("map-keymap", Fmap_keymap, Smap_keymap, 2, 3, 0,
746 doc: /* Call FUNCTION for every binding in KEYMAP. 746 doc: /* Call FUNCTION once for each binding in KEYMAP.
747FUNCTION is called with two arguments: the event and its binding. 747FUNCTION is called with two arguments: the event that is bound, and
748the definition it is bound to.
749
748If KEYMAP has a parent, the parent's bindings are included as well. 750If KEYMAP has a parent, the parent's bindings are included as well.
749This works recursively: if the parent has itself a parent, then the 751This works recursively: if the parent has itself a parent, then the
750grandparent's bindings are also included and so on. 752grandparent's bindings are also included and so on.