]> code.delx.au - gnu-emacs/blobdiff - src/macros.h
(Fbury_buffer): If buffer is in selected window, remove it.
[gnu-emacs] / src / macros.h
index 1d5ba570f14d4de5dbe7753b6e9543a5ad643c46..2396514ea232bd531f11e4644347d7273955b9bb 100644 (file)
@@ -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;