Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
4b7ab1c4
Commit
4b7ab1c4
authored
Nov 29, 2007
by
Andreas Schwab
Browse files
(apply_modifiers): Fix typo.
parent
1b275743
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
src/ChangeLog
src/ChangeLog
+4
-0
src/keyboard.c
src/keyboard.c
+1
-1
No files found.
src/ChangeLog
View file @
4b7ab1c4
2007-11-29 Andreas Schwab <schwab@suse.de>
* keyboard.c (apply_modifiers): Fix typo.
2007-11-29 Richard Stallman <rms@gnu.org>
* keymap.c (Fcurrent_local_map): Doc fix.
...
...
src/keyboard.c
View file @
4b7ab1c4
...
...
@@ -6588,7 +6588,7 @@ apply_modifiers (modifiers, base)
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);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment