From a4b92a05ef2eb1ddbb95dc3bb787c453003abe5e Mon Sep 17 00:00:00 2001 From: Javier Olaechea Date: Fri, 15 Aug 2014 14:05:03 -0500 Subject: [PATCH] replace deprecated sb-ext:quit with sb-ext:exit As of 1.0.57[1] [1]: http://sbcl.org/all-news.html#1.0.57 --- src/util.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util.lisp b/src/util.lisp index af25127..ebafe4e 100644 --- a/src/util.lisp +++ b/src/util.lisp @@ -60,7 +60,7 @@ an UNWIND-PROTECT, then change back to the current directory." (defun exit () "Exit the lisp system returning a 0 status code." - #+sbcl (sb-ext:quit) + #+sbcl (sb-ext:exit) #+ccl (ccl:quit) #+ecl (si:quit) #+cmucl (ext:quit)