diff options
author | Andreas Schwab <schwab@suse.de> | 2007-05-07 20:50:08 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 2007-05-07 20:50:08 +0000 |
commit | d6d8548d54477b3d9f4e2ba5d3bf489cf0de9d2f (patch) | |
tree | 2833b2b61cdc154559df906f3ba540d243214970 /src/keymap.c | |
parent | 7489372ab1007b2ac97860071af11f5143779e15 (diff) | |
download | emacs-d6d8548d54477b3d9f4e2ba5d3bf489cf0de9d2f.tar.gz |
(Flookup_key): Fix typo in last change.
Diffstat (limited to 'src/keymap.c')
-rw-r--r-- | src/keymap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keymap.c b/src/keymap.c index 145d872863a..dbcf1d6fcfd 100644 --- a/src/keymap.c +++ b/src/keymap.c @@ -1313,7 +1313,7 @@ recognize the default bindings, just as `read-key-sequence' does. */) c = Fevent_convert_list (c); /* Turn the 8th bit of string chars into a meta modifier. */ - if (STRINGP (key) && XINT (c) & 0x8 && !STRING_MULTIBYTE (key)) + if (STRINGP (key) && XINT (c) & 0x80 && !STRING_MULTIBYTE (key)) XSETINT (c, (XINT (c) | meta_modifier) & ~0x80); /* Allow string since binding for `menu-bar-select-buffer' |