|
From: Nikodemus S. <nik...@ra...> - 2009-09-12 09:36:49
|
2009/9/12 Patrick Stein <sbc...@nk...>: > I can't seem to make certain CLOS style warnings go away even with > a ":verbose nil": > > (asdf:operate 'asdf:load-op 'zpb-ttf :verbose nil), I still get > messages like: > STYLE-WARNING: redefining LOCATION in DEFGENERIC > STYLE-WARNING: Implicitly creating new generic function > INITIALIZE-BOUNDING-BOX. This is the way it's supposed to be: the warnings come from the compiler, not ASDF. Similarly, COMPILE-FILE :VERBOSE NIL only controls notifications about toplevel forms being compiled. What you want is (handler-bind ((style-warning #'muffle-warning)) (asdf:operate ...)) or similar. Granted, it might be reasonable for --script to muffle all style-warnings and compiler notes by default. Cheers, -- Nikodemus |