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:
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user