1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-04-26 04:17:27 +00:00

Cleanup for ERROR_EXIT/TIMER_EXIT/WARN style, remove unused typedef (#283)

Convert ERROR_EXIT, TIMER_EXIT, and WARN to "do {} while (0)" style and
  fix a few usage points that were missing trailing semi-colons.
Remove unused typedef for CFuncPtr.
This commit is contained in:
Nick Briggs
2021-01-24 17:59:31 -08:00
committed by GitHub
parent 95e406ba2e
commit b151790c40
3 changed files with 7 additions and 9 deletions

View File

@@ -102,7 +102,7 @@ LispPTR N_OP_clequal(register int arg1, register int arg2) {
if (IsNumber(arg2)) {
return (NIL);
} else
ERROR_EXIT(arg2)
ERROR_EXIT(arg2);
}
/* now we know both are numbers */
@@ -194,7 +194,7 @@ arg2_small:
if (IsNumber(arg2)) {
return (NIL);
} else
ERROR_EXIT(arg2)
ERROR_EXIT(arg2);
}
/* now we know both are numbers */