Missing package prefix in the use of with-interrupts (J. James)

This commit is contained in:
Juan Jose Garcia Ripoll 2011-01-19 22:23:27 +01:00
parent 9a4ae70bed
commit 652272341e

View file

@ -91,7 +91,7 @@ As interrupts are normally allowed WITH-INTERRUPTS only makes sense if there
is an outer WITHOUT-INTERRUPTS with a corresponding ALLOW-WITH-INTERRUPTS:
interrupts are not enabled if any outer WITHOUT-INTERRUPTS is not accompanied
by ALLOW-WITH-INTERRUPTS."
(with-unique-names (allowp enablep)
(ext:with-unique-names (allowp enablep)
;; We could manage without ENABLEP here, but that would require
;; taking extra care not to ever have *ALLOW-WITH-INTERRUPTS* NIL
;; and *INTERRUPTS-ENABLED* T -- instead of risking future breakage