diff options
| author | Kim F. Storm | 2002-09-08 20:28:46 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2002-09-08 20:28:46 +0000 |
| commit | 64799df53a76c22f39c1b1c50b68b31d25bd0b39 (patch) | |
| tree | f888b6313b850c4e278b19a5eaccfad1d1f47792 /src | |
| parent | 177aef40f08c8fef9dd8fb9005a4f5745e519713 (diff) | |
| download | emacs-64799df53a76c22f39c1b1c50b68b31d25bd0b39.tar.gz emacs-64799df53a76c22f39c1b1c50b68b31d25bd0b39.zip | |
(executing_macro_index): Change type to EMACS_INT.
(syms_of_macros): DEFVAR_INT it (needed by kmacro).
Diffstat (limited to 'src')
| -rw-r--r-- | src/macros.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/macros.c b/src/macros.c index e9601b1aa7f..456a6e31fa3 100644 --- a/src/macros.c +++ b/src/macros.c | |||
| @@ -35,7 +35,7 @@ Lisp_Object Vexecuting_macro; | |||
| 35 | 35 | ||
| 36 | /* Index of next character to fetch from that macro. */ | 36 | /* Index of next character to fetch from that macro. */ |
| 37 | 37 | ||
| 38 | int executing_macro_index; | 38 | EMACS_INT executing_macro_index; |
| 39 | 39 | ||
| 40 | /* Number of successful iterations so far | 40 | /* Number of successful iterations so far |
| 41 | for innermost keyboard macro. | 41 | for innermost keyboard macro. |
| @@ -380,6 +380,9 @@ syms_of_macros () | |||
| 380 | DEFVAR_LISP ("executing-macro", &Vexecuting_macro, | 380 | DEFVAR_LISP ("executing-macro", &Vexecuting_macro, |
| 381 | doc: /* Currently executing keyboard macro (string or vector); nil if none executing. */); | 381 | doc: /* Currently executing keyboard macro (string or vector); nil if none executing. */); |
| 382 | 382 | ||
| 383 | DEFVAR_INT ("executing-macro-index", &executing_macro_index, | ||
| 384 | doc: /* Index in currently executing keyboard macro; undefined if none executing. */); | ||
| 385 | |||
| 383 | DEFVAR_LISP_NOPRO ("executing-kbd-macro", &Vexecuting_macro, | 386 | DEFVAR_LISP_NOPRO ("executing-kbd-macro", &Vexecuting_macro, |
| 384 | doc: /* Currently executing keyboard macro (string or vector); nil if none executing. */); | 387 | doc: /* Currently executing keyboard macro (string or vector); nil if none executing. */); |
| 385 | 388 | ||