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
e31560a7
Commit
e31560a7
authored
Feb 14, 2013
by
Stefan Monnier
Browse files
* src/keyboard.c (active_maps): Fcurrent_active_maps expects a position, not
an event.
parent
5267e6d3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
src/ChangeLog
src/ChangeLog
+5
-0
src/keyboard.c
src/keyboard.c
+2
-1
No files found.
src/ChangeLog
View file @
e31560a7
2013-02-14 Stefan Monnier <monnier@iro.umontreal.ca>
* keyboard.c (active_maps): Fcurrent_active_maps expects a position, not
an event.
2013-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
* keyboard.c (syms_of_keyboard): Further tweaks of docstring.
...
...
src/keyboard.c
View file @
e31560a7
...
...
@@ -8644,7 +8644,8 @@ follow_key (Lisp_Object keymap, Lisp_Object key)
static Lisp_Object
active_maps (Lisp_Object first_event)
{
Lisp_Object position = INTEGERP (first_event) ? Qnil : first_event;
Lisp_Object position
= CONSP (first_event) ? CAR_SAFE (XCDR (first_event)) : Qnil;
return Fcons (Qkeymap, Fcurrent_active_maps (Qt, position));
}
...
...
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