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


From: Stefan Monnier
Subject: [Emacs-diffs] Changes to emacs/src/keyboard.c
Date: Mon, 17 Nov 2003 18:29:42 -0500

Index: emacs/src/keyboard.c
diff -c emacs/src/keyboard.c:1.754 emacs/src/keyboard.c:1.755
*** emacs/src/keyboard.c:1.754  Mon Sep  1 11:45:54 2003
--- emacs/src/keyboard.c        Mon Nov 17 18:29:40 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]