Mercurial > emacs
annotate src/macros.h @ 112372:539ff9c0e704
gnus-art.el (gnus-article-add-buttons): Simplify condition.
(gnus-button-push): Remove gnus-button-entry function, it fails heavily if you have the same regexp several times.
(gnus-button-push): Fix matching when regexp is symbol.
spam.el (spam-spamassassin-register-with-sa-learn): Insert a full From header with a date and "nobody" as the sender.
author | Katsumi Yamaoka <yamaoka@jpl.org> |
---|---|
date | Wed, 19 Jan 2011 22:22:18 +0000 |
parents | 42e22c4f06b7 |
children |
rev | line source |
---|---|
484 | 1 /* Definitions for keyboard macro interpretation in GNU Emacs. |
75227
e90d04cd455a
Update copyright for years from Emacs 21 to present (mainly adding
Glenn Morris <rgm@gnu.org>
parents:
68651
diff
changeset
|
2 Copyright (C) 1985, 2001, 2002, 2003, 2004, 2005, |
112218
376148b31b5e
Add 2011 to FSF/AIST copyright years.
Glenn Morris <rgm@gnu.org>
parents:
106815
diff
changeset
|
3 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. |
484 | 4 |
5 This file is part of GNU Emacs. | |
6 | |
94994
29adfc9354e7
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79759
diff
changeset
|
7 GNU Emacs is free software: you can redistribute it and/or modify |
484 | 8 it under the terms of the GNU General Public License as published by |
94994
29adfc9354e7
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79759
diff
changeset
|
9 the Free Software Foundation, either version 3 of the License, or |
29adfc9354e7
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79759
diff
changeset
|
10 (at your option) any later version. |
484 | 11 |
12 GNU Emacs is distributed in the hope that it will be useful, | |
13 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 GNU General Public License for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
94994
29adfc9354e7
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79759
diff
changeset
|
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ |
484 | 19 |
20 | |
15970
d54ae2343dff
(executing_macro_iterations, executing_macro): Declared.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
21 /* Number of successful iterations so far |
d54ae2343dff
(executing_macro_iterations, executing_macro): Declared.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
22 for innermost keyboard macro. |
d54ae2343dff
(executing_macro_iterations, executing_macro): Declared.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
23 This is not bound at each level, |
d54ae2343dff
(executing_macro_iterations, executing_macro): Declared.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
24 so after an error, it describes the innermost interrupted macro. */ |
d54ae2343dff
(executing_macro_iterations, executing_macro): Declared.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
25 |
62024
4f7e1a56469e
(executing_kbd_macro_index): Rename from executing_macro_index.
Kim F. Storm <storm@cua.dk>
parents:
61981
diff
changeset
|
26 extern int executing_kbd_macro_iterations; |
15970
d54ae2343dff
(executing_macro_iterations, executing_macro): Declared.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
27 |
d54ae2343dff
(executing_macro_iterations, executing_macro): Declared.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
28 /* This is the macro that was executing. |
d54ae2343dff
(executing_macro_iterations, executing_macro): Declared.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
29 This is not bound at each level, |
d54ae2343dff
(executing_macro_iterations, executing_macro): Declared.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
30 so after an error, it describes the innermost interrupted macro. */ |
d54ae2343dff
(executing_macro_iterations, executing_macro): Declared.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
31 |
62024
4f7e1a56469e
(executing_kbd_macro_index): Rename from executing_macro_index.
Kim F. Storm <storm@cua.dk>
parents:
61981
diff
changeset
|
32 extern Lisp_Object executing_kbd_macro; |
20300
1030a9fcf001
Declare finalize_kbd_macro_chars and
Andreas Schwab <schwab@suse.de>
parents:
15970
diff
changeset
|
33 |
47349
5c37672e24c8
(end_kbd_macro): Declare extern.
Kim F. Storm <storm@cua.dk>
parents:
47308
diff
changeset
|
34 /* Finish defining the current keyboard macro. */ |
5c37672e24c8
(end_kbd_macro): Declare extern.
Kim F. Storm <storm@cua.dk>
parents:
47308
diff
changeset
|
35 |
109099 | 36 extern void end_kbd_macro (void); |
47349
5c37672e24c8
(end_kbd_macro): Declare extern.
Kim F. Storm <storm@cua.dk>
parents:
47308
diff
changeset
|
37 |
20300
1030a9fcf001
Declare finalize_kbd_macro_chars and
Andreas Schwab <schwab@suse.de>
parents:
15970
diff
changeset
|
38 /* Declare that all chars stored so far in the kbd macro being defined |
1030a9fcf001
Declare finalize_kbd_macro_chars and
Andreas Schwab <schwab@suse.de>
parents:
15970
diff
changeset
|
39 really belong to it. This is done in between editor commands. */ |
1030a9fcf001
Declare finalize_kbd_macro_chars and
Andreas Schwab <schwab@suse.de>
parents:
15970
diff
changeset
|
40 |
109099 | 41 extern void finalize_kbd_macro_chars (void); |
20300
1030a9fcf001
Declare finalize_kbd_macro_chars and
Andreas Schwab <schwab@suse.de>
parents:
15970
diff
changeset
|
42 |
1030a9fcf001
Declare finalize_kbd_macro_chars and
Andreas Schwab <schwab@suse.de>
parents:
15970
diff
changeset
|
43 /* Store a character into kbd macro being defined */ |
1030a9fcf001
Declare finalize_kbd_macro_chars and
Andreas Schwab <schwab@suse.de>
parents:
15970
diff
changeset
|
44 |
109099 | 45 extern void store_kbd_macro_char (Lisp_Object); |
52401 | 46 |