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 [emacs-unicode-2]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/src/keymap.c [emacs-unicode-2]
Date: Wed, 08 Dec 2004 00:47:54 -0500

Index: emacs/src/keymap.c
diff -c emacs/src/keymap.c:1.282.4.16 emacs/src/keymap.c:1.282.4.17
*** emacs/src/keymap.c:1.282.4.16       Fri Nov 19 06:54:57 2004
--- emacs/src/keymap.c  Wed Dec  8 05:02:18 2004
***************
*** 1273,1279 ****
        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'
--- 1273,1279 ----
        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]