mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-20 11:33:09 -08:00
(Flookup_key): Fix typo in last change.
This commit is contained in:
parent
7489372ab1
commit
d6d8548d54
2 changed files with 5 additions and 1 deletions
|
|
@ -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'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue