Newsgroups: comp.lang.lisp Path: utzoo!utgpu!news-server.csri.toronto.edu!rpi!harrisr From: harrisr@cs.rpi.edu (Richard Harris) Subject: Re: suppressing compiler warnings in Franz Allegro Common Lisp Message-ID: Nntp-Posting-Host: cs.rpi.edu Organization: Rensselaer Computer Science, Troy NY References: <281F704B.29962@ics.uci.edu> Date: 2 May 91 20:40:27 GMT Lines: 8 It is easy to completely suppress all compiler messages, if you aren't worried about warnings or error messages: (let ((*error-output* (make-broadcast-stream))) (compile-file file)) (You might need to rebind other output streams as well.) Richard Harris