diff options
| author | Kim F. Storm | 2005-05-02 10:32:40 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2005-05-02 10:32:40 +0000 |
| commit | 649d952dcc561fedf076e46acc8fb2d1e222b2fa (patch) | |
| tree | cfff3f2a492bd82884d394b4b3f4d5d43de440d3 /src/macros.h | |
| parent | 8736f4c222c4be2064d562f2d02e3694a36e9c0e (diff) | |
| download | emacs-649d952dcc561fedf076e46acc8fb2d1e222b2fa.tar.gz emacs-649d952dcc561fedf076e46acc8fb2d1e222b2fa.zip | |
(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; | |||
| 25 | 25 | ||
| 26 | /* Index of next character to fetch from that macro. */ | 26 | /* Index of next character to fetch from that macro. */ |
| 27 | 27 | ||
| 28 | extern EMACS_INT executing_macro_index; | 28 | extern EMACS_INT executing_kbd_macro_index; |
| 29 | 29 | ||
| 30 | /* Number of successful iterations so far | 30 | /* Number of successful iterations so far |
| 31 | for innermost keyboard macro. | 31 | for innermost keyboard macro. |
| 32 | This is not bound at each level, | 32 | This is not bound at each level, |
| 33 | so after an error, it describes the innermost interrupted macro. */ | 33 | so after an error, it describes the innermost interrupted macro. */ |
| 34 | 34 | ||
| 35 | extern int executing_macro_iterations; | 35 | extern int executing_kbd_macro_iterations; |
| 36 | 36 | ||
| 37 | /* This is the macro that was executing. | 37 | /* This is the macro that was executing. |
| 38 | This is not bound at each level, | 38 | This is not bound at each level, |
| 39 | so after an error, it describes the innermost interrupted macro. */ | 39 | so after an error, it describes the innermost interrupted macro. */ |
| 40 | 40 | ||
| 41 | extern Lisp_Object executing_macro; | 41 | extern Lisp_Object executing_kbd_macro; |
| 42 | 42 | ||
| 43 | /* Finish defining the current keyboard macro. */ | 43 | /* Finish defining the current keyboard macro. */ |
| 44 | 44 | ||