quicklisp / quicklisp-client

Quicklisp client.
http://www.quicklisp.org/
MIT License
296 stars 74 forks source link

:verbose t parameter of ql:quickload affects compilation result, not only output verbosity #74

Open avodonosov opened 11 years ago

avodonosov commented 11 years ago

SBCL. Quicklisp 2013-01-28.

    rm -r ~/.cache/common-lisp/
    (ql:quickload :unicly) 

works, while

    rm -r ~/.cache/common-lisp/
    (ql:quickload :unicly :verbose t) 

fails.

Seem to be caused by muffle-warning done by quicklisp in case of :verbose nil, because , if I understand right, warnings normally cause cl:compile-file third returned value failure-p to be t.

IMHO compilation result should not depend on a parameter called verpose

metayan commented 6 years ago

Encountered the same issue with :gsll now. SBCL 1.4.2, Quicklisp 2017-03-06.