mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-15 05:43:19 -08:00
In CMP-0007-CIRCULAR-LOAD-FORM, need-to-make-load-form-p was missing an argument.
This commit is contained in:
parent
47d8845f4c
commit
8c50ac9311
1 changed files with 7 additions and 6 deletions
|
|
@ -170,12 +170,13 @@
|
|||
))
|
||||
|
||||
(deftest cmp-0007-circular-load-form
|
||||
(mapcar #'clos::need-to-make-load-form-p
|
||||
(let ((l (list 1 2 3)))
|
||||
(list l
|
||||
(subst 3 l l)
|
||||
(make-instance 'cmp-007-class)
|
||||
(subst (make-instance 'cmp-007-class) 3 l))))
|
||||
(loop for object in
|
||||
(let ((l (list 1 2 3)))
|
||||
(list l
|
||||
(subst 3 l l)
|
||||
(make-instance 'cmp-007-class)
|
||||
(subst (make-instance 'cmp-007-class) 3 l)))
|
||||
collect (clos::need-to-make-load-form-p object nil))
|
||||
(nil nil t t))
|
||||
|
||||
;;; Date: 18/05/2005
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue