From: Andreas Schwab Date: Mon, 7 May 2007 20:50:08 +0000 (+0000) Subject: (Flookup_key): Fix typo in last change. X-Git-Tag: emacs-pretest-23.0.90~12717 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d6d8548d54477b3d9f4e2ba5d3bf489cf0de9d2f;p=emacs.git (Flookup_key): Fix typo in last change. --- diff --git a/src/ChangeLog b/src/ChangeLog index b6340a19cb1..4f44f7d0834 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2007-05-07 Andreas Schwab + + * keymap.c (Flookup_key): Fix typo in last change. + 2007-05-07 Stefan Monnier * keymap.c (Fdefine_key, Flookup_key): Only do the 0x80->meta_modifier 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'