aboutsummaryrefslogtreecommitdiffstats
path: root/src/keymap.c
diff options
context:
space:
mode:
authorGerd Moellmann2001-08-24 08:42:35 +0000
committerGerd Moellmann2001-08-24 08:42:35 +0000
commit3ec6401d7b9b4ca4e27c7365603e2b667f651fb1 (patch)
tree7a498023b88e6aed1c7d56ebf6dfea77f0171b89 /src/keymap.c
parente12496667830fbd310b082d1a9c1b60cb6bd7b53 (diff)
downloademacs-3ec6401d7b9b4ca4e27c7365603e2b667f651fb1.tar.gz
emacs-3ec6401d7b9b4ca4e27c7365603e2b667f651fb1.zip
(access_keymap): Return the cdr of the binding of
a generic character instead of its definition (KEY . BINDING).
Diffstat (limited to 'src/keymap.c')
-rw-r--r--src/keymap.c2
1 files changed, 1 insertions, 1 deletions
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)
550 /* KEY is the generic character of the charset of IDX. 550 /* KEY is the generic character of the charset of IDX.
551 Use KEY's binding if there isn't a binding for IDX 551 Use KEY's binding if there isn't a binding for IDX
552 itself. */ 552 itself. */
553 generic_binding = binding; 553 generic_binding = XCDR (binding);
554 } 554 }
555 else if (t_ok && EQ (XCAR (binding), Qt)) 555 else if (t_ok && EQ (XCAR (binding), Qt))
556 t_binding = XCDR (binding); 556 t_binding = XCDR (binding);