emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs/src ChangeLog keyboard.c


From: Stefan Monnier
Subject: [Emacs-diffs] emacs/src ChangeLog keyboard.c
Date: Wed, 06 May 2009 01:30:30 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Stefan Monnier <monnier>        09/05/06 01:30:30

Modified files:
        src            : ChangeLog keyboard.c 

Log message:
        (syms_of_keyboard): Staticpro pending_funcalls.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/src/ChangeLog?cvsroot=emacs&r1=1.7530&r2=1.7531
http://cvs.savannah.gnu.org/viewcvs/emacs/src/keyboard.c?cvsroot=emacs&r1=1.1004&r2=1.1005

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/emacs/emacs/src/ChangeLog,v
retrieving revision 1.7530
retrieving revision 1.7531
diff -u -b -r1.7530 -r1.7531
--- ChangeLog   4 May 2009 15:19:43 -0000       1.7530
+++ ChangeLog   6 May 2009 01:30:13 -0000       1.7531
@@ -1,3 +1,7 @@
+2009-05-06  Stefan Monnier  <address@hidden>
+
+       * keyboard.c (syms_of_keyboard): Staticpro pending_funcalls.
+
 2009-05-04  Stefan Monnier  <address@hidden>
 
        * Makefile.in (ctagsfiles1, ctagsfiles2): Include ObjC files in TAGS.

Index: keyboard.c
===================================================================
RCS file: /sources/emacs/emacs/src/keyboard.c,v
retrieving revision 1.1004
retrieving revision 1.1005
diff -u -b -r1.1004 -r1.1005
--- keyboard.c  29 Apr 2009 03:48:47 -0000      1.1004
+++ keyboard.c  6 May 2009 01:30:23 -0000       1.1005
@@ -4491,7 +4491,7 @@
 
 /* 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 element has the form (FUN . ARGS).  */
 Lisp_Object pending_funcalls;
 
 extern Lisp_Object Qapply;
@@ -11711,6 +11711,7 @@
 syms_of_keyboard ()
 {
   pending_funcalls = Qnil;
+  staticpro (&pending_funcalls);
 
   Vlispy_mouse_stem = build_string ("mouse");
   staticpro (&Vlispy_mouse_stem);




reply via email to

[Prev in Thread] Current Thread [Next in Thread]