Sometimes the compiler messages are useful in RT. Let the calling routine set the values of *compile-{verbose,print}*.

This commit is contained in:
jgarcia 2006-10-11 15:15:16 +00:00
parent 3be09c41b2
commit 433c8fe385

View file

@ -162,15 +162,13 @@
(flet ((%do
()
(if *compile-tests*
(let ((*compile-verbose* nil)
(*compile-print* nil))
(multiple-value-list
(funcall (compile
nil
`(lambda ()
(declare
(optimize ,@*optimization-settings*))
,(form entry))))))
(multiple-value-list
(funcall (compile
nil
`(lambda ()
(declare
(optimize ,@*optimization-settings*))
,(form entry)))))
(multiple-value-list
(eval (form entry))))))
(if *catch-errors*