From: Gerd Moellmann Date: Fri, 24 Aug 2001 08:42:35 +0000 (+0000) Subject: (access_keymap): Return the cdr of the binding of X-Git-Tag: emacs-pretest-21.0.105~93 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3ec6401d7b9b4ca4e27c7365603e2b667f651fb1;p=emacs.git (access_keymap): Return the cdr of the binding of a generic character instead of its definition (KEY . BINDING). --- diff --git a/src/keymap.c b/src/keymap.c index e503172cfa4..82ee642923c 100644 --- a/src/keymap.c +++ b/src/keymap.c @@ -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);