Add 2012 to FSF copyright years for Emacs files (do not merge to trunk)
[bpt/emacs.git] / src / macros.h
CommitLineData
d427b66a 1/* Definitions for keyboard macro interpretation in GNU Emacs.
429ab54e 2 Copyright (C) 1985, 2001, 2002, 2003, 2004, 2005,
49f70d46 3 2006, 2007, 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
d427b66a
JB
4
5This file is part of GNU Emacs.
6
b9b1cc14 7GNU Emacs is free software: you can redistribute it and/or modify
d427b66a 8it under the terms of the GNU General Public License as published by
b9b1cc14
GM
9the Free Software Foundation, either version 3 of the License, or
10(at your option) any later version.
d427b66a
JB
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
b9b1cc14 18along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
d427b66a
JB
19
20
484de118 21/* Kbd macro currently being executed (a string or vector). */
d427b66a 22
0aed526e 23extern Lisp_Object Vexecuting_kbd_macro;
d427b66a 24
484de118 25/* Index of next character to fetch from that macro. */
d427b66a 26
649d952d 27extern EMACS_INT executing_kbd_macro_index;
484de118
RS
28
29/* Number of successful iterations so far
30 for innermost keyboard macro.
31 This is not bound at each level,
32 so after an error, it describes the innermost interrupted macro. */
33
649d952d 34extern int executing_kbd_macro_iterations;
484de118
RS
35
36/* This is the macro that was executing.
37 This is not bound at each level,
38 so after an error, it describes the innermost interrupted macro. */
39
649d952d 40extern Lisp_Object executing_kbd_macro;
e7900044 41
8ab09429
KS
42/* Finish defining the current keyboard macro. */
43
44extern void end_kbd_macro P_ ((void));
45
e7900044
AS
46/* Declare that all chars stored so far in the kbd macro being defined
47 really belong to it. This is done in between editor commands. */
48
49extern void finalize_kbd_macro_chars P_ ((void));
50
51/* Store a character into kbd macro being defined */
52
53extern void store_kbd_macro_char P_ ((Lisp_Object));
ab5796a9
MB
54
55/* arch-tag: 8edb7088-682f-4d1f-a4d9-0fbb7284234e
56 (do not change this comment) */