From 3ec6401d7b9b4ca4e27c7365603e2b667f651fb1 Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Fri, 24 Aug 2001 08:42:35 +0000 Subject: [PATCH] (access_keymap): Return the cdr of the binding of a generic character instead of its definition (KEY . BINDING). --- src/keymap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.39.5