chiark
/
gitweb
/
~mdw
/
profile
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ef86444
)
dot/lisp-init.lisp: Muffle warnings both times we load ASDF in CLisp.
author
Mark Wooding
<mdw@distorted.org.uk>
Tue, 26 Feb 2013 10:03:54 +0000
(10:03 +0000)
committer
Mark 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
patch
|
blob
|
blame
|
history
diff --git
a/dot/lisp-init.lisp
b/dot/lisp-init.lisp
index 8a543e098cacaf465f8ce77f9ff3d71fb9368699..c77e49444a365a4dff28e272877e0e386b57b8ed 100644
(file)
--- a/
dot/lisp-init.lisp
+++ b/
dot/lisp-init.lisp
@@
-7,11
+7,11
@@
(use-package '#:mdw-hacks)
#+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)))