updates for the day

This commit is contained in:
Eric Andersen
1999-11-13 04:47:09 +00:00
parent eded54bd96
commit b6a44b8d39
13 changed files with 65 additions and 45 deletions

View File

@ -135,7 +135,7 @@ static char *retext; /* points to the text being compiled */
/* error-handling stuff */
jmp_buf errorhandler;
#define FAIL(why) fprintf(stderr, why); longjmp(errorhandler, 1)
#define FAIL(why) do {fprintf(stderr, why); longjmp(errorhandler, 1);} while (0)