]> git.eshelyaron.com Git - emacs.git/commitdiff
(Flookup_key): Fix typo in last change.
authorAndreas Schwab <schwab@suse.de>
Mon, 7 May 2007 20:50:08 +0000 (20:50 +0000)
committerAndreas Schwab <schwab@suse.de>
Mon, 7 May 2007 20:50:08 +0000 (20:50 +0000)
src/ChangeLog
src/keymap.c

index b6340a19cb1c0d9672c76ce4a7ff93e0834ac19d..4f44f7d0834bd783dc8cde889a8ae020c46b28d7 100644 (file)
@@ -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
index 145d872863a718252eed17345837e5ab3d2e5400..dbcf1d6fcfde5196f91f42a8480f167d3a379be0 100644 (file)
@@ -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'