Mercurial > emacs
changeset 2482:49e894e9561d
* keyboard.c (apply_modifiers): Fix typo in sanity check.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Thu, 08 Apr 1993 00:14:50 +0000 |
parents | a7a0f89c1f64 |
children | b4145a12422d |
files | src/keyboard.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/keyboard.c Wed Apr 07 23:54:28 1993 +0000 +++ b/src/keyboard.c Thu Apr 08 00:14:50 1993 +0000 @@ -2531,7 +2531,7 @@ /* The click modifier never figures into cache indices. */ cache = Fget (base, Qmodifier_cache); - if (index & ~((1<<VALBITS) - 1)) + if (modifiers & ~((1<<VALBITS) - 1)) abort (); XFASTINT (index) = (modifiers & ~click_modifier); entry = Fassq (index, cache);