From 484de1186a69f49c9e61632e3251deeaab84cb84 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Thu, 29 Aug 1996 04:39:47 +0000 Subject: [PATCH] (executing_macro_iterations, executing_macro): Declared. --- src/macros.h | 17 +++++++++++++++-- 1 file 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; -- 2.11.4.GIT