Mercurial > emacs
changeset 86832:68626d4aee64
(apply_modifiers): Fix typo.
author | Andreas Schwab <schwab@suse.de> |
---|---|
date | Thu, 29 Nov 2007 11:49:10 +0000 |
parents | 07648bba8409 |
children | 9a5165586076 |
files | src/keyboard.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/keyboard.c Thu Nov 29 07:29:18 2007 +0000 +++ b/src/keyboard.c Thu Nov 29 11:49:10 2007 +0000 @@ -6588,7 +6588,7 @@ modifiers &= INTMASK; if (INTEGERP (base)) - return make_number (XINT (base) & modifiers); + return make_number (XINT (base) | modifiers); /* The click modifier never figures into cache indices. */ cache = Fget (base, Qmodifier_cache);