Skip to content
Snippets Groups Projects
Commit 22f137fa authored by Attila Lendvai's avatar Attila Lendvai
Browse files

Fix define-constant thinko, thanks for Tobias C. Rittweiler for pointing it out.

parent 3271e28a
No related branches found
No related tags found
No related merge requests found
(in-package :alexandria) (in-package :alexandria)
(defun extract-function-name (spec) (defun extract-function-name (spec)
"Useful for macros that want to emulate the functional interface for functions "Useful for macros that want to mimic the functional interface for functions
like #'eq and 'eq." like #'eq and 'eq."
(if (and (consp spec) (if (and (consp spec)
(member (first spec) '(quote function))) (member (first spec) '(quote function)))
...@@ -26,7 +26,7 @@ like #'eq and 'eq." ...@@ -26,7 +26,7 @@ like #'eq and 'eq."
~S is not equal to the provided initial value ~S ~ ~S is not equal to the provided initial value ~S ~
under ~S.~:@>" name old new test))))))) under ~S.~:@>" name old new test)))))))
(defmacro define-constant (name initial-value &key (test 'eql) documentation) (defmacro define-constant (name initial-value &key (test ''eql) documentation)
"Ensures that the global variable named by NAME is a constant with a "Ensures that the global variable named by NAME is a constant with a
value that is equal under TEST to the result of evaluating value that is equal under TEST to the result of evaluating
INITIAL-VALUE. TEST is a /function designator/ that defaults to INITIAL-VALUE. TEST is a /function designator/ that defaults to
...@@ -39,5 +39,5 @@ Signals an error if NAME is already a constant variable whose value is not ...@@ -39,5 +39,5 @@ Signals an error if NAME is already a constant variable whose value is not
equal under TEST to result of evaluating INITIAL-VALUE." equal under TEST to result of evaluating INITIAL-VALUE."
`(defconstant ,name (%reevaluate-constant ',name `(defconstant ,name (%reevaluate-constant ',name
,initial-value ,initial-value
:test ',(extract-function-name test)) :test ,test)
,@(when documentation `(,documentation)))) ,@(when documentation `(,documentation))))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment