emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r111885: Qcall_interactively and Qexe


From: Paul Eggert
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r111885: Qcall_interactively and Qexecute_kbd_macro are now static.
Date: Tue, 26 Feb 2013 23:42:43 -0800
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 111885
committer: Paul Eggert <address@hidden>
branch nick: trunk
timestamp: Tue 2013-02-26 23:42:43 -0800
message:
  Qcall_interactively and Qexecute_kbd_macro are now static.
modified:
  src/ChangeLog
  src/callint.c
  src/lisp.h
  src/macros.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2013-02-26 14:28:37 +0000
+++ b/src/ChangeLog     2013-02-27 07:42:43 +0000
@@ -1,3 +1,9 @@
+2013-02-27  Paul Eggert  <address@hidden>
+
+       * callint.c (Qcall_interactively):
+       * macros.c (Qexecute_kbd_macro):
+       Now static.
+
 2013-02-26  Bastien Guerry  <address@hidden>
 
        * window.c (Frecenter): Tiny docstring enhancement.

=== modified file 'src/callint.c'
--- a/src/callint.c     2013-02-25 16:05:49 +0000
+++ b/src/callint.c     2013-02-27 07:42:43 +0000
@@ -29,7 +29,7 @@
 #include "keymap.h"
 
 Lisp_Object Qminus, Qplus;
-Lisp_Object Qcall_interactively;
+static Lisp_Object Qcall_interactively;
 static Lisp_Object Qcommand_debug_status;
 static Lisp_Object Qenable_recursive_minibuffers;
 

=== modified file 'src/lisp.h'
--- a/src/lisp.h        2013-02-20 05:18:20 +0000
+++ b/src/lisp.h        2013-02-27 07:42:43 +0000
@@ -3366,7 +3366,7 @@
 
 extern Lisp_Object Qminus, Qplus;
 extern Lisp_Object Qwhen;
-extern Lisp_Object Qcall_interactively, Qmouse_leave_buffer_hook;
+extern Lisp_Object Qmouse_leave_buffer_hook;
 extern void syms_of_callint (void);
 
 /* Defined in casefiddle.c.  */
@@ -3527,7 +3527,6 @@
                                   Lisp_Object, ptrdiff_t, Lisp_Object *);
 
 /* Defined in macros.c.  */
-extern Lisp_Object Qexecute_kbd_macro;
 extern void init_macros (void);
 extern void syms_of_macros (void);
 

=== modified file 'src/macros.c'
--- a/src/macros.c      2013-02-17 16:49:27 +0000
+++ b/src/macros.c      2013-02-27 07:42:43 +0000
@@ -28,7 +28,7 @@
 #include "window.h"
 #include "keyboard.h"
 
-Lisp_Object Qexecute_kbd_macro;
+static Lisp_Object Qexecute_kbd_macro;
 static Lisp_Object Qkbd_macro_termination_hook;
 
 /* Number of successful iterations so far


reply via email to

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