From 1a9a1c81403861b1062d81dc92864be368f739f5 Mon Sep 17 00:00:00 2001 From: Stas Boukarev Date: Wed, 30 Jan 2019 17:50:47 +0300 Subject: [PATCH] Change the name of the "abort building SBCL" restart. To ABORT-BUILD, as there will be other ABORT restarts. --- loader.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/loader.lisp b/loader.lisp index 905493b45..879be72b9 100644 --- a/loader.lisp +++ b/loader.lisp @@ -12,7 +12,7 @@ (return-from load-sbcl-file))) (restart-case (load file) - (abort () + (abort-build () :report "Abort building SBCL." (exit-sbcl 1))) (when exit (exit-sbcl 0))))