# HG changeset patch # User Richard M. Stallman # Date 1114973191 0 # Node ID 8131d95ff03745f246f9a01380b89c6621c4a4c6 # Parent f3d53667049503eb88d2b17ab09e7eb90f294c8c (Vexecuting_kbd_macro): Declare instead of Vexecuting_macro. diff -r f3d536670495 -r 8131d95ff037 src/commands.h --- a/src/commands.h Sun May 01 17:01:44 2005 +0000 +++ b/src/commands.h Sun May 01 18:46:31 2005 +0000 @@ -76,11 +76,11 @@ /* Nonzero means ^G can quit instantly */ extern int immediate_quit; -extern Lisp_Object Vexecuting_macro; +extern Lisp_Object Vexecuting_kbd_macro; /* Nonzero if input is coming from the keyboard */ -#define INTERACTIVE (NILP (Vexecuting_macro) && !noninteractive) +#define INTERACTIVE (NILP (Vexecuting_kbd_macro) && !noninteractive) /* Set this nonzero to force reconsideration of mode line. */ diff -r f3d536670495 -r 8131d95ff037 src/macros.h --- a/src/macros.h Sun May 01 17:01:44 2005 +0000 +++ b/src/macros.h Sun May 01 18:46:31 2005 +0000 @@ -21,7 +21,7 @@ /* Kbd macro currently being executed (a string or vector). */ -extern Lisp_Object Vexecuting_macro; +extern Lisp_Object Vexecuting_kbd_macro; /* Index of next character to fetch from that macro. */