One of the cond branches was missing call to STRING. Move it to after the cond.

This commit is contained in:
jjgarcia 2005-05-30 09:35:50 +00:00
parent 71ea2d7a78
commit 004763863c

View file

@ -141,7 +141,7 @@
separator-string (string separator-string))
(dolist (item values-list)
(cond ((symbolp item)
(setf field (string item))
(setf field item)
(incf value))
((and (consp item)
(symbolp (setf field (first item)))
@ -152,7 +152,7 @@
(setf field (concatenate 'string
(symbol-name name)
separator-string
field))
(string field)))
(push `(defconstant ,(intern field (symbol-package name))
',value)
forms))