Function: map-keymap-internal
map-keymap-internal is a function defined in keymap.c.
Signature
(map-keymap-internal FUNCTION KEYMAP)
Documentation
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 event may be a character range. If KEYMAP has a parent, this function returns it without processing it.
Source Code
// Defined in /usr/src/emacs/src/keymap.c
{
keymap = get_keymap (keymap, 1, 1);
keymap = map_keymap_internal (keymap, map_keymap_call, function, NULL);
return keymap;
}