mirror of
https://github.com/vale981/lack
synced 2025-03-05 09:21:39 -05:00
Suppress loading messages in find-package-or-load.
This commit is contained in:
parent
1c6f0f7ebc
commit
0ec31a24a6
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@
|
|||
(let ((package (find-package package-name)))
|
||||
(or package
|
||||
(let ((system-name (string-downcase (substitute #\- #\. package-name :test #'char=))))
|
||||
#+quicklisp (handler-case (ql:quickload system-name)
|
||||
#+quicklisp (handler-case (ql:quickload system-name :silent t)
|
||||
(ql:system-not-found ()))
|
||||
#-quicklisp (when (asdf:find-system system-name nil)
|
||||
(asdf:load-system system-name :verbose nil))
|
||||
|
|
Loading…
Add table
Reference in a new issue