1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-28 01:00:52 -07:00

(access_keymap): Return the cdr of the binding of

a generic character instead of its definition (KEY . BINDING).
This commit is contained in:
Gerd Moellmann 2001-08-24 08:42:35 +00:00
parent e124966678
commit 3ec6401d7b

View file

@ -550,7 +550,7 @@ access_keymap (map, idx, t_ok, noinherit, autoload)
/* KEY is the generic character of the charset of IDX.
Use KEY's binding if there isn't a binding for IDX
itself. */
generic_binding = binding;
generic_binding = XCDR (binding);
}
else if (t_ok && EQ (XCAR (binding), Qt))
t_binding = XCDR (binding);