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
864660a2
Commit
864660a2
authored
May 06, 2009
by
Stefan Monnier
Browse files
(syms_of_keyboard): Staticpro pending_funcalls.
parent
e6c01f09
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
src/ChangeLog
src/ChangeLog
+4
-0
src/keyboard.c
src/keyboard.c
+2
-1
No files found.
src/ChangeLog
View file @
864660a2
2009-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
* keyboard.c (syms_of_keyboard): Staticpro pending_funcalls.
2009-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
* Makefile.in (ctagsfiles1, ctagsfiles2): Include ObjC files in TAGS.
...
...
src/keyboard.c
View file @
864660a2
...
...
@@ -4491,7 +4491,7 @@ struct input_event last_timer_event;
/* List of elisp functions to call, delayed because they were generated in
a context where Elisp could not be safely run (e.g. redisplay, signal,
...). Each lement has the form (FUN . ARGS). */
...). Each
e
lement has the form (FUN . ARGS). */
Lisp_Object pending_funcalls;
extern Lisp_Object Qapply;
...
...
@@ -11711,6 +11711,7 @@ void
syms_of_keyboard ()
{
pending_funcalls = Qnil;
staticpro (&pending_funcalls);
Vlispy_mouse_stem = build_string ("mouse");
staticpro (&Vlispy_mouse_stem);
...
...
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