diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/commands.h | 4 | ||||
| -rw-r--r-- | src/macros.h | 2 |
2 files changed, 3 insertions, 3 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; | |||
| 76 | /* Nonzero means ^G can quit instantly */ | 76 | /* Nonzero means ^G can quit instantly */ |
| 77 | extern int immediate_quit; | 77 | extern int immediate_quit; |
| 78 | 78 | ||
| 79 | extern Lisp_Object Vexecuting_macro; | 79 | extern Lisp_Object Vexecuting_kbd_macro; |
| 80 | 80 | ||
| 81 | /* Nonzero if input is coming from the keyboard */ | 81 | /* Nonzero if input is coming from the keyboard */ |
| 82 | 82 | ||
| 83 | #define INTERACTIVE (NILP (Vexecuting_macro) && !noninteractive) | 83 | #define INTERACTIVE (NILP (Vexecuting_kbd_macro) && !noninteractive) |
| 84 | 84 | ||
| 85 | /* Set this nonzero to force reconsideration of mode line. */ | 85 | /* Set this nonzero to force reconsideration of mode line. */ |
| 86 | 86 | ||
diff --git a/src/macros.h b/src/macros.h index 41a32efe2e0..f406d62559f 100644 --- a/src/macros.h +++ b/src/macros.h | |||
| @@ -21,7 +21,7 @@ Boston, MA 02111-1307, USA. */ | |||
| 21 | 21 | ||
| 22 | /* Kbd macro currently being executed (a string or vector). */ | 22 | /* Kbd macro currently being executed (a string or vector). */ |
| 23 | 23 | ||
| 24 | extern Lisp_Object Vexecuting_macro; | 24 | extern Lisp_Object Vexecuting_kbd_macro; |
| 25 | 25 | ||
| 26 | /* Index of next character to fetch from that macro. */ | 26 | /* Index of next character to fetch from that macro. */ |
| 27 | 27 | ||