emacs-diffs
[Top][All Lists]
Advanced

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

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


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/src/keyboard.c [lexbind]
Date: Thu, 20 Nov 2003 19:36:59 -0500

Index: emacs/src/keyboard.c
diff -c emacs/src/keyboard.c:1.681.2.2 emacs/src/keyboard.c:1.681.2.3
*** emacs/src/keyboard.c:1.681.2.2      Tue Oct 14 19:16:47 2003
--- emacs/src/keyboard.c        Thu Nov 20 19:36:18 2003
***************
*** 6126,6132 ****
                                         SBYTES (SYMBOL_NAME (symbol)) - end),
                            Qnil);
  
!       if (modifiers & ~VALMASK)
        abort ();
        XSETFASTINT (mask, modifiers);
        elements = Fcons (unmodified, Fcons (mask, Qnil));
--- 6126,6132 ----
                                         SBYTES (SYMBOL_NAME (symbol)) - end),
                            Qnil);
  
!       if (modifiers & ~INTMASK)
        abort ();
        XSETFASTINT (mask, modifiers);
        elements = Fcons (unmodified, Fcons (mask, Qnil));
***************
*** 6163,6169 ****
    Lisp_Object cache, index, entry, new_symbol;
  
    /* Mask out upper bits.  We don't know where this value's been.  */
!   modifiers &= VALMASK;
  
    /* The click modifier never figures into cache indices.  */
    cache = Fget (base, Qmodifier_cache);
--- 6163,6169 ----
    Lisp_Object cache, index, entry, new_symbol;
  
    /* Mask out upper bits.  We don't know where this value's been.  */
!   modifiers &= INTMASK;
  
    /* The click modifier never figures into cache indices.  */
    cache = Fget (base, Qmodifier_cache);




reply via email to

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