(Flookup_key): Fix typo in last change.
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
2007-05-07 Andreas Schwab <schwab@suse.de>
|
||||
|
||||
* keymap.c (Flookup_key): Fix typo in last change.
|
||||
|
||||
2007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* keymap.c (Fdefine_key, Flookup_key): Only do the 0x80->meta_modifier
|
||||
|
||||
@@ -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'
|
||||
|
||||
Reference in New Issue
Block a user