emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/keymap.c


From: Stefan Monnier
Subject: [Emacs-diffs] Changes to emacs/src/keymap.c
Date: Tue, 23 Nov 2004 00:15:12 -0500

Index: emacs/src/keymap.c
diff -c emacs/src/keymap.c:1.297 emacs/src/keymap.c:1.298
*** emacs/src/keymap.c:1.297    Tue Nov 16 17:00:59 2004
--- emacs/src/keymap.c  Tue Nov 23 05:08:09 2004
***************
*** 1240,1246 ****
        c = Fevent_convert_list (c);
  
        /* Turn the 8th bit of string chars into a meta modifier.  */
!       if (XINT (c) & 0x80 && STRINGP (key))
        XSETINT (c, (XINT (c) | meta_modifier) & ~0x80);
  
        /* Allow string since binding for `menu-bar-select-buffer'
--- 1240,1246 ----
        c = Fevent_convert_list (c);
  
        /* Turn the 8th bit of string chars into a meta modifier.  */
!       if (INTEGERP (c) && XINT (c) & 0x80 && STRINGP (key))
        XSETINT (c, (XINT (c) | meta_modifier) & ~0x80);
  
        /* Allow string since binding for `menu-bar-select-buffer'




reply via email to

[Prev in Thread] Current Thread [Next in Thread]