diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-08-29 04:39:47 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-08-29 04:39:47 +0000 |
commit | 484de1186a69f49c9e61632e3251deeaab84cb84 (patch) | |
tree | 87945ad7bab834b9d6f8598f0925b9482df09720 /src/macros.h | |
parent | e881d8b2f77b00965579ceacd6912ccb2ad628df (diff) | |
download | emacs-484de1186a69f49c9e61632e3251deeaab84cb84.tar.gz |
(executing_macro_iterations, executing_macro): Declared.
Diffstat (limited to 'src/macros.h')
-rw-r--r-- | src/macros.h | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/src/macros.h b/src/macros.h index 1d5ba570f14..2396514ea23 100644 --- a/src/macros.h +++ b/src/macros.h @@ -19,10 +19,23 @@ the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/* Kbd macro currently being executed (a string) */ +/* Kbd macro currently being executed (a string or vector). */ extern Lisp_Object Vexecuting_macro; -/* Index of next character to fetch from that macro */ +/* Index of next character to fetch from that macro. */ extern int executing_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; + +/* 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; |