From 3c893d94d416cac53aed45b185510614cf2b3f88 Mon Sep 17 00:00:00 2001 From: Didier Verna Date: Tue, 21 Dec 2010 16:13:59 +0100 Subject: [PATCH] Port exit to ABCL. src/ ChangeLog addition: 2010-12-21 Didier Verna * util.lisp (exit): Support ABCL. --- src/util.lisp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/util.lisp b/src/util.lisp index 3c92643..0a93d03 100644 --- a/src/util.lisp +++ b/src/util.lisp @@ -442,7 +442,8 @@ Return two values: #+cmu (unix:unix-exit status) #+ccl (ccl:quit status) #+ecl (ext:quit status) - #+clisp (ext:exit status)) + #+clisp (ext:exit status) + #+abcl (extensions:exit :status status)) (defun cmdline () "Get the current application's command-line." -- 2.11.4.GIT