How do I disable all warnings in sbcl? The extra output is rather annoying.
|
|
||||
|
|
|
this is what i use to muffle both compile-time and runtime (load-time) redefinition warnings:
following this pattern you can install these handlers on superclasses like cl:style-warning to muffle all style warnings. |
|||
|
|
|
You can either use |
|||
|
|
|
You probably want to look at |
|||
|
|
I couldn't get SB-EXT:MUFFLE-CONDITIONS to work for the highly annoying undefined variable warning even after much googling. That warning drives me nuts when experimenting at the REPL, so I did what all the books suggest we should do: extend lisp to suit my needs/preferences! I wrote my own setq that shut up the sbcl warnings, my first macro ever :). I'm sure there are better ways to do it but this works great for me, and it's going right into my ~/.sbclrc!
|
|||||
|