src/lsp/defstruct.lsp: APPEND -> NCONC when using freshly created lists.

This commit is contained in:
Juan Jose Garcia Ripoll 2009-11-14 17:36:28 +01:00
parent b4b2d12f7e
commit b69d02dac6

View file

@ -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)