chiark / gitweb /
dot/lisp-init.lisp: Add a missing stanza heading.
[profile] / dot / lisp-init.lisp
index d36ae5f744cb11d60853f8e8bd3a11119370ff45..24712fea4d26a49facf39e71461a8c95507a6329 100644 (file)
@@ -6,7 +6,9 @@ (cl:in-package #:mdw-hacks)
 ;; Shut up.
 (setf *load-verbose* nil)
 (setf *compile-verbose* nil)
-#+cmu (setf *gc-verbose* nil)
+
+#+cmu
+(setf *gc-verbose* nil)
 
 ;; Obtain ASDF from somewhere.
 (require "asdf")
@@ -29,7 +31,8 @@ (let* ((homestring (or #+sbcl (sb-ext:posix-getenv "HOME")
          ("CL:SYSTEMS;**;*.*.*" #p"/usr/share/common-lisp/systems/**/*.*"))))
 
 ;; Various fixings.
-#+clisp (setf custom:*parse-namestring-ansi* t)
+#+clisp
+(setf custom:*parse-namestring-ansi* t)
 
 ;; Shebang.
 (set-dispatch-macro-character
@@ -49,7 +52,9 @@ (defun crank-swank (&rest args)
     (set (find-symbol "*GLOBAL-DEBUGGER*" swank) nil)
     (apply (find-symbol "CREATE-SERVER" swank) args)))
 
-#+asdf (setf asdf:*compile-file-failure-behaviour* :warn)
+;; Treat warnings as, err, warnings.
+#+asdf
+(setf asdf:*compile-file-failure-behaviour* :warn)
 
 ;; Done.
 (pushnew :mdw *features*)