mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-09 13:10:57 -08:00
(Vexecuting_kbd_macro): Declare instead of Vexecuting_macro.
This commit is contained in:
parent
b2c8f1430a
commit
0aed526e95
2 changed files with 3 additions and 3 deletions
|
|
@ -76,11 +76,11 @@ extern Lisp_Object last_point_position_buffer;
|
|||
/* 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. */
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ Boston, MA 02111-1307, USA. */
|
|||
|
||||
/* 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. */
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue