X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/profile/blobdiff_plain/5927034b3227389fe185063414366beafd00cfbb..84739668640ccafe972a045f8ffbaeef6d4e7d8a:/dot/lisp-init.lisp?ds=sidebyside diff --git a/dot/lisp-init.lisp b/dot/lisp-init.lisp index 0a8cb7e..3cdcd5e 100644 --- a/dot/lisp-init.lisp +++ b/dot/lisp-init.lisp @@ -1,18 +1,25 @@ +;;; -*-lisp-*- + (cl:defpackage #:mdw-hacks (:use #:cl)) (cl:defparameter mdw-hacks::*previous-package* cl:*package*) (cl:in-package #:mdw-hacks) ;; Shut up. -(setf *load-verbose* nil) -(setf *compile-verbose* nil) +(setf *load-verbose* nil + *compile-verbose* nil) #+cmu -(setf *gc-verbose* nil) +(setf ext:*gc-verbose* nil + ext:*require-verbose* nil) ;; Obtain ASDF from somewhere. (require "asdf") +;; Get CMU CL to quit on EOF. +#+cmu +(setf ext:*batch-mode* t) + ;; Tell SBCL where to find its source source. #+sbcl (sb-ext:set-sbcl-source-location #p"/usr/share/sbcl-source/") @@ -52,6 +59,7 @@ (defun crank-swank (&rest args) (set (find-symbol "*GLOBAL-DEBUGGER*" swank) nil) (apply (find-symbol "CREATE-SERVER" swank) args))) +;; Treat warnings as, err, warnings. #+asdf (setf asdf:*compile-file-failure-behaviour* :warn)