dot/lisp-init.lisp: Muffle warnings both times we load ASDF in CLisp.
authorMark Wooding <mdw@distorted.org.uk>
Tue, 26 Feb 2013 10:03:54 +0000 (10:03 +0000)
committerMark Wooding <mdw@distorted.org.uk>
Tue, 26 Feb 2013 10:08:33 +0000 (10:08 +0000)
Otherwise we get a load of spew the first time in some versions.

dot/lisp-init.lisp

index 8a543e0..c77e494 100644 (file)
@@ -7,11 +7,11 @@
 #+sbcl (require :asdf)
 #+clisp (let ((*compile-verbose* nil)
              (*load-verbose* nil))
-         (load "/usr/share/common-lisp/source/cl-asdf/asdf.lisp"
-               :verbose nil)
          (handler-bind ((warning (lambda (cond)
                                    (declare (ignore cond))
                                    (muffle-warning))))
+           (load "/usr/share/common-lisp/source/cl-asdf/asdf.lisp"
+                 :verbose nil)
            (funcall (find-symbol "LOAD-SYSTEM" :asdf) :asdf
                     :verbose nil)))