Change the name of the "abort building SBCL" restart.

To ABORT-BUILD, as there will be other ABORT restarts.
This commit is contained in:
Stas Boukarev 2019-01-30 17:50:47 +03:00
parent 84e5bd46b6
commit 1a9a1c8140

View file

@ -12,7 +12,7 @@
(return-from load-sbcl-file))) (return-from load-sbcl-file)))
(restart-case (restart-case
(load file) (load file)
(abort () (abort-build ()
:report "Abort building SBCL." :report "Abort building SBCL."
(exit-sbcl 1))) (exit-sbcl 1)))
(when exit (exit-sbcl 0)))) (when exit (exit-sbcl 0))))