From: Richard M. Stallman Date: Thu, 29 Aug 1996 04:39:47 +0000 (+0000) Subject: (executing_macro_iterations, executing_macro): Declared. X-Git-Tag: emacs-20.1~3974 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=484de1186a69f49c9e61632e3251deeaab84cb84;p=emacs.git (executing_macro_iterations, executing_macro): Declared. --- 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;