mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-28 07:22:27 -08:00
src/lsp/defstruct.lsp: APPEND -> NCONC when using freshly created lists.
This commit is contained in:
parent
b4b2d12f7e
commit
b69d02dac6
1 changed files with 1 additions and 1 deletions
|
|
@ -110,7 +110,7 @@
|
|||
(when other-slots
|
||||
(unless aux
|
||||
(push '&aux other-slots))
|
||||
(setf boa-list (append boa-list other-slots)))
|
||||
(setf boa-list (nconc boa-list other-slots)))
|
||||
(values boa-list assertions))))
|
||||
|
||||
(defun make-constructor (name constructor type named slot-descriptions)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue