mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-07 09:50:25 -08:00
One of the cond branches was missing call to STRING. Move it to after the cond.
This commit is contained in:
parent
71ea2d7a78
commit
004763863c
1 changed files with 2 additions and 2 deletions
|
|
@ -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))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue