diff options
| author | Andreas Schwab | 1997-11-21 13:24:40 +0000 |
|---|---|---|
| committer | Andreas Schwab | 1997-11-21 13:24:40 +0000 |
| commit | e7900044689018482f8a0a16e0509f9a34802ab4 (patch) | |
| tree | ed13e0d8f4365bbd3695ac23cbc2980b2b3d066a /src | |
| parent | c3fd8dd5523f6a823fe79e4222c3073a17eb96dc (diff) | |
| download | emacs-e7900044689018482f8a0a16e0509f9a34802ab4.tar.gz emacs-e7900044689018482f8a0a16e0509f9a34802ab4.zip | |
Declare finalize_kbd_macro_chars and
store_kbd_macro_char.
Diffstat (limited to 'src')
| -rw-r--r-- | src/macros.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/macros.h b/src/macros.h index 2396514ea23..8f3f003e398 100644 --- a/src/macros.h +++ b/src/macros.h | |||
| @@ -39,3 +39,12 @@ extern int executing_macro_iterations; | |||
| 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_macro; |
| 42 | |||
| 43 | /* 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. */ | ||
| 45 | |||
| 46 | extern void finalize_kbd_macro_chars P_ ((void)); | ||
| 47 | |||
| 48 | /* Store a character into kbd macro being defined */ | ||
| 49 | |||
| 50 | extern void store_kbd_macro_char P_ ((Lisp_Object)); | ||