diff options
-rw-r--r-- | sb-eval2.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sb-eval2.lisp b/sb-eval2.lisp index cea08b2..67e6207 100644 --- a/sb-eval2.lisp +++ b/sb-eval2.lisp @@ -740,7 +740,7 @@ (defun prevent-constant-modification (var) (when (globally-constant-p var) - (error "~S is a constant and thus can't be set." var))) + (warn "~S is a constant and thus can't be set." var))) (defvar *mode* :not-compile-time) |