From 3f1a8c31b4ff2e4c42e7408fb1553fe87e027218 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Kochma=C5=84ski?= Date: Sat, 4 Feb 2017 12:00:26 +0100 Subject: [PATCH] cmp: refactor: be explicit on some symbols *compile-print* and *compile-verbose* are CL package symbols, be explicit about that when defining them. --- src/cmp/cmpglobals.lsp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cmp/cmpglobals.lsp b/src/cmp/cmpglobals.lsp index 809a929d0..104862bb7 100644 --- a/src/cmp/cmpglobals.lsp +++ b/src/cmp/cmpglobals.lsp @@ -49,11 +49,11 @@ (defvar *compiler-conditions* '() "This variable determines whether conditions are printed or just accumulated.") -(defvar *compile-print* nil +(defvar cl:*compile-print* nil "This variable controls whether the compiler displays messages about each form it processes. The default value is NIL.") -(defvar *compile-verbose* nil +(defvar cl:*compile-verbose* nil "This variable controls whether the compiler should display messages about its progress. The default value is T.")