Skip to content

Commit 3c4d9f5

Browse files
authored
Modifies LISPFINISH subr to use 2nd argument, if present, for exit status (#525)
Redesign of exit status handling, instead of overloading the FAST flag of (LOGOUT fast), add an optional 2nd argument, EXITSTATUS. Retains compatability, with behavior unchanged, between new emulator and older sysouts which do not pass the second argument to LISPFINISH. Newer sysouts, which pass the 2nd argument, will continue to work with older emulators though will not get the exit status set.
1 parent 31bb14b commit 3c4d9f5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/subr.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -416,11 +416,11 @@ void OP_subrcall(int subr_no, int argnum) {
416416
case sb_LISP_FINISH: {
417417
int status;
418418
POP_SUBR_ARGS;
419-
if (argnum == 0 || args[0] == NIL || args[0] == ATOM_T)
420-
lisp_finish(EXIT_SUCCESS);
421-
N_GETNUMBER(args[0], status, exit_fail);
419+
if (argnum == 0 || argnum == 1 || (argnum == 2 && args[1] == NIL)) lisp_finish(EXIT_SUCCESS);
420+
if (argnum > 2) lisp_finish(EXIT_FAILURE);
421+
N_GETNUMBER(args[1], status, exit_fail);
422422
lisp_finish(status);
423-
exit_fail:
423+
exit_fail:
424424
lisp_finish(EXIT_FAILURE);
425425
break;
426426
}

0 commit comments

Comments
 (0)