comparison src/macros.h @ 90159:08185296b491

Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-44 Merge from emacs--cvs-trunk--0 Patches applied: * emacs--cvs-trunk--0 (patch 272-288) - src/xdisp.c (dump_glyph_row): Don't display overlay_arrow_p field. - Update from CVS - Merge from gnus--rel--5.10 * gnus--rel--5.10 (patch 67) - Update from CVS
author Miles Bader <miles@gnu.org>
date Thu, 05 May 2005 00:04:55 +0000
parents 68c22ea6027c 4f7e1a56469e
children f9a65d7ebd29
comparison
equal deleted inserted replaced
90158:bf4846baba9a 90159:08185296b491
19 Boston, MA 02111-1307, USA. */ 19 Boston, MA 02111-1307, USA. */
20 20
21 21
22 /* Kbd macro currently being executed (a string or vector). */ 22 /* Kbd macro currently being executed (a string or vector). */
23 23
24 extern Lisp_Object Vexecuting_macro; 24 extern Lisp_Object Vexecuting_kbd_macro;
25 25
26 /* Index of next character to fetch from that macro. */ 26 /* Index of next character to fetch from that macro. */
27 27
28 extern EMACS_INT executing_macro_index; 28 extern EMACS_INT executing_kbd_macro_index;
29 29
30 /* Number of successful iterations so far 30 /* Number of successful iterations so far
31 for innermost keyboard macro. 31 for innermost keyboard macro.
32 This is not bound at each level, 32 This is not bound at each level,
33 so after an error, it describes the innermost interrupted macro. */ 33 so after an error, it describes the innermost interrupted macro. */
34 34
35 extern int executing_macro_iterations; 35 extern int executing_kbd_macro_iterations;
36 36
37 /* This is the macro that was executing. 37 /* This is the macro that was executing.
38 This is not bound at each level, 38 This is not bound at each level,
39 so after an error, it describes the innermost interrupted macro. */ 39 so after an error, it describes the innermost interrupted macro. */
40 40
41 extern Lisp_Object executing_macro; 41 extern Lisp_Object executing_kbd_macro;
42 42
43 /* Finish defining the current keyboard macro. */ 43 /* Finish defining the current keyboard macro. */
44 44
45 extern void end_kbd_macro P_ ((void)); 45 extern void end_kbd_macro P_ ((void));
46 46