aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2002-09-09 22:34:10 +0000
committerKim F. Storm2002-09-09 22:34:10 +0000
commit8ab094298034ad87fe57dd6e61d98cd47df2e8db (patch)
treefc89e9eeb77eb0ea465761bc4bd950f80f888375
parenteeb8fc0d2394701a34ee5763521cc71c8df919e6 (diff)
downloademacs-8ab094298034ad87fe57dd6e61d98cd47df2e8db.tar.gz
emacs-8ab094298034ad87fe57dd6e61d98cd47df2e8db.zip
(end_kbd_macro): Declare extern.
-rw-r--r--src/macros.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/macros.h b/src/macros.h
index 6c927b80b5c..3f2629c661d 100644
--- a/src/macros.h
+++ b/src/macros.h
@@ -40,6 +40,10 @@ extern int executing_macro_iterations;
40 40
41extern Lisp_Object executing_macro; 41extern Lisp_Object executing_macro;
42 42
43/* Finish defining the current keyboard macro. */
44
45extern void end_kbd_macro P_ ((void));
46
43/* Declare that all chars stored so far in the kbd macro being defined 47/* Declare that all chars stored so far in the kbd macro being defined
44 really belong to it. This is done in between editor commands. */ 48 really belong to it. This is done in between editor commands. */
45 49