1
Fork 0
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:
Stefan Monnier 2003-11-17 23:29:40 +00:00
parent 7ad4355406
commit e22216b8a5

View file

@ -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);