mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-06 03:40:56 -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
|
|
@ -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