From 652272341e166e9bb093ca4778eb894985317968 Mon Sep 17 00:00:00 2001 From: Juan Jose Garcia Ripoll Date: Wed, 19 Jan 2011 22:23:27 +0100 Subject: [PATCH] Missing package prefix in the use of with-interrupts (J. James) --- src/lsp/mp.lsp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lsp/mp.lsp b/src/lsp/mp.lsp index b603a4cf1..e3dde9881 100644 --- a/src/lsp/mp.lsp +++ b/src/lsp/mp.lsp @@ -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