[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Undefined function reference warnings
- To: info-macl@cambridge.apple.com
- Subject: Undefined function reference warnings
- From: Ray Pelletier <rp23+@andrew.cmu.edu>
- Date: Tue, 5 May 1992 16:04:22 -0400 (EDT)
- Cc:
My boss, who could not care less about the style police, insisted that
I get rid of undefined function reference warnings. The following seems
to work...
(defun gag-undefined-references ()
(%set-toplevel
#'(lambda ()
(handler-bind
((ccl::undefined-function-reference
#'(lambda (condition) (muffle-warning condition))))
(toplevel-loop))))
(toplevel))
-Ray Pelletier