diff options
| author | Erik Naggum | 1996-08-29 21:22:04 +0000 |
|---|---|---|
| committer | Erik Naggum | 1996-08-29 21:22:04 +0000 |
| commit | 1ab778be0568fd565196413e2489e3438937b18a (patch) | |
| tree | 761f3993b499314b31a31c2964a8bd26e9985373 /src | |
| parent | c1b8c545170d7104104a8398757e76fd1775ed72 (diff) | |
| download | emacs-1ab778be0568fd565196413e2489e3438937b18a.tar.gz emacs-1ab778be0568fd565196413e2489e3438937b18a.zip | |
(init_macros): Initialize executing_macro, too.
Diffstat (limited to 'src')
| -rw-r--r-- | src/macros.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/macros.c b/src/macros.c index 2592faeba19..30327503ebb 100644 --- a/src/macros.c +++ b/src/macros.c | |||
| @@ -281,6 +281,7 @@ COUNT is a repeat count, or nil for once, or 0 for infinite loop.") | |||
| 281 | init_macros () | 281 | init_macros () |
| 282 | { | 282 | { |
| 283 | Vexecuting_macro = Qnil; | 283 | Vexecuting_macro = Qnil; |
| 284 | executing_macro = Qnil; | ||
| 284 | } | 285 | } |
| 285 | 286 | ||
| 286 | syms_of_macros () | 287 | syms_of_macros () |