diff options
author | Richard M. Stallman <rms@gnu.org> | 2005-05-01 18:46:31 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2005-05-01 18:46:31 +0000 |
commit | 0aed526e95d6cd17dea0712a4542d348dcbd29b9 (patch) | |
tree | e56f58473084d7d042cacde28d53aa297d670f44 /src/commands.h | |
parent | b2c8f1430a21fd3e32ae7d5ef38948603a18ff53 (diff) | |
download | emacs-0aed526e95d6cd17dea0712a4542d348dcbd29b9.tar.gz |
(Vexecuting_kbd_macro): Declare instead of Vexecuting_macro.
Diffstat (limited to 'src/commands.h')
-rw-r--r-- | src/commands.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/commands.h b/src/commands.h index f7831bc36a9..b9b1ad41933 100644 --- a/src/commands.h +++ b/src/commands.h @@ -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. */ |