From: Mark Wooding Date: Sat, 15 May 2021 12:38:36 +0000 (+0100) Subject: runlisp.c: Undefine local option-parsing macros at the end of the block. X-Git-Url: https://git.distorted.org.uk/~mdw/runlisp/commitdiff_plain/2d4554ca5ee1304e67ddd29b00402993ca07fcd2 runlisp.c: Undefine local option-parsing macros at the end of the block. --- diff --git a/runlisp.c b/runlisp.c index 65741ad..5cd1320 100644 --- a/runlisp.c +++ b/runlisp.c @@ -303,6 +303,9 @@ static void parse_options(int argc, char *argv[]) default: flags |= AF_BOGUS; break; } } + +#undef FLAGOPT +#undef CMDL } /* Extract and process the embedded options from a SCRIPT. */