Add sbclrc file
This commit is contained in:
parent
4ba4746f9f
commit
2a7609ac65
1 changed files with 15 additions and 0 deletions
15
.sbclrc
Normal file
15
.sbclrc
Normal file
|
@ -0,0 +1,15 @@
|
|||
(sb-ext:set-sbcl-source-location "~/sbcl/")
|
||||
(defun print-condition-hook (condition hook)
|
||||
"Print this error message (condition) and abort the current operation."
|
||||
(declare (ignore hook))
|
||||
(princ condition)
|
||||
(clear-input)
|
||||
(abort))
|
||||
*debugger-hook*
|
||||
(setf *debugger-hook* #'print-condition-hook)
|
||||
;;; The following lines added by ql:add-to-init-file:
|
||||
#-quicklisp
|
||||
(let ((quicklisp-init (merge-pathnames "quicklisp/setup.lisp"
|
||||
(user-homedir-pathname))))
|
||||
(when (probe-file quicklisp-init)
|
||||
(load quicklisp-init)))
|
Loading…
Add table
Reference in a new issue