diff options
author | Kim F. Storm <storm@cua.dk> | 2005-05-02 10:32:40 +0000 |
---|---|---|
committer | Kim F. Storm <storm@cua.dk> | 2005-05-02 10:32:40 +0000 |
commit | 649d952dcc561fedf076e46acc8fb2d1e222b2fa (patch) | |
tree | cfff3f2a492bd82884d394b4b3f4d5d43de440d3 /src/macros.h | |
parent | 8736f4c222c4be2064d562f2d02e3694a36e9c0e (diff) | |
download | emacs-649d952dcc561fedf076e46acc8fb2d1e222b2fa.tar.gz |
(executing_kbd_macro_index): Rename from executing_macro_index.
(executing_kbd_macro_iterations): Rename from executing_macro_iterations.
(executing_kbd_macro): Rename from executing_macro.
* macro.c (syms_of_macros): Rename Lisp var executing-macro-index to
executing-kbd-macro-index.
Diffstat (limited to 'src/macros.h')
-rw-r--r-- | src/macros.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/macros.h b/src/macros.h index f406d62559f..bf33ea8325b 100644 --- a/src/macros.h +++ b/src/macros.h @@ -25,20 +25,20 @@ extern Lisp_Object Vexecuting_kbd_macro; /* Index of next character to fetch from that macro. */ -extern EMACS_INT executing_macro_index; +extern EMACS_INT executing_kbd_macro_index; /* Number of successful iterations so far for innermost keyboard macro. This is not bound at each level, so after an error, it describes the innermost interrupted macro. */ -extern int executing_macro_iterations; +extern int executing_kbd_macro_iterations; /* This is the macro that was executing. This is not bound at each level, so after an error, it describes the innermost interrupted macro. */ -extern Lisp_Object executing_macro; +extern Lisp_Object executing_kbd_macro; /* Finish defining the current keyboard macro. */ |