mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-09 13:10:57 -08:00
(parse_modifiers, apply_modifiers): Use INTMASK instead of VALMASK.
This commit is contained in:
parent
7ad4355406
commit
e22216b8a5
1 changed files with 2 additions and 2 deletions
|
|
@ -6126,7 +6126,7 @@ parse_modifiers (symbol)
|
|||
SBYTES (SYMBOL_NAME (symbol)) - end),
|
||||
Qnil);
|
||||
|
||||
if (modifiers & ~VALMASK)
|
||||
if (modifiers & ~INTMASK)
|
||||
abort ();
|
||||
XSETFASTINT (mask, modifiers);
|
||||
elements = Fcons (unmodified, Fcons (mask, Qnil));
|
||||
|
|
@ -6163,7 +6163,7 @@ apply_modifiers (modifiers, base)
|
|||
Lisp_Object cache, index, entry, new_symbol;
|
||||
|
||||
/* Mask out upper bits. We don't know where this value's been. */
|
||||
modifiers &= VALMASK;
|
||||
modifiers &= INTMASK;
|
||||
|
||||
/* The click modifier never figures into cache indices. */
|
||||
cache = Fget (base, Qmodifier_cache);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue