#62 closed defect (fixed)
CLOS checking of MAKE-INSTANCE argument checking fails
Reported by: | Mark Evenson | Owned by: | somebody |
---|---|---|---|
Priority: | major | Milestone: | 0.22 |
Component: | CLOS | Version: | 1.0 |
Keywords: | Cc: | ||
Parent Tickets: |
Description
The problem can be tested by attempting to load an ASDF system defintion as follows:
(asdf:operate 'asdf:load-op :abcl :verbose t)
which produces the error
Invalid initarg :VERBOSE.
but probably can be reduced to a simpler test case involving functions with &key arguments after &rest.
Introduced in r12067
Change History (3)
comment:1 Changed 15 years ago by
Summary: | CLOS with &key arguments after &rest fails → CLOS checking of MAKE-INSTANCE argument checking fails |
---|
comment:3 Changed 14 years ago by
Milestone: | unscheduled → 0.22 |
---|
closed is not 'unscheduled'; moving to the most recently closed milestone.
Note: See
TracTickets for help on using
tickets.
Simplified test case to:
(require 'asdf)
(apply #'make-instance 'asdf:load-op :original-initargs '(:verbose t) '(:verbose t)))