cmp: refactor: be explicit on some symbols

*compile-print* and *compile-verbose* are CL package symbols, be
 explicit about that when defining them.
This commit is contained in:
Daniel Kochmański 2017-02-04 12:00:26 +01:00 committed by Daniel Kochmanski
parent 153262c1cc
commit 3f1a8c31b4

View file

@ -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.")