[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/src/macros.c
From: |
Kim F. Storm |
Subject: |
[Emacs-diffs] Changes to emacs/src/macros.c |
Date: |
Sun, 08 Sep 2002 16:28:46 -0400 |
Index: emacs/src/macros.c
diff -c emacs/src/macros.c:1.48 emacs/src/macros.c:1.49
*** emacs/src/macros.c:1.48 Wed Aug 14 06:35:31 2002
--- emacs/src/macros.c Sun Sep 8 16:28:46 2002
***************
*** 35,41 ****
/* Index of next character to fetch from that macro. */
! int executing_macro_index;
/* Number of successful iterations so far
for innermost keyboard macro.
--- 35,41 ----
/* Index of next character to fetch from that macro. */
! EMACS_INT executing_macro_index;
/* Number of successful iterations so far
for innermost keyboard macro.
***************
*** 379,384 ****
--- 379,387 ----
DEFVAR_LISP ("executing-macro", &Vexecuting_macro,
doc: /* Currently executing keyboard macro (string or vector);
nil if none executing. */);
+
+ DEFVAR_INT ("executing-macro-index", &executing_macro_index,
+ doc: /* Index in currently executing keyboard macro; undefined if
none executing. */);
DEFVAR_LISP_NOPRO ("executing-kbd-macro", &Vexecuting_macro,
doc: /* Currently executing keyboard macro (string or
vector); nil if none executing. */);
- [Emacs-diffs] Changes to emacs/src/macros.c,
Kim F. Storm <=