Ticket #378 (closed defect: fixed)

Opened 2 months ago

Last modified 2 months ago

error calling call-next-method in long-form method combination

Reported by: gz Assigned to: gz
Priority: normal Milestone:
Component: ANSI CL Compliance Version:
Keywords: Cc:

Description

(define-method-combination test-method-combination ()

((around (:around))

(primary () :required t))

`(call-method ,(first around) ( (make-method (call-method ,(first primary))) )))

(defgeneric foo (x)

(:method-combination test-method-combination))

(defmethod foo((o integer))

nil)

(defmethod foo :around ((o integer))

(call-next-method o))

(foo 23)

causes an error: value NIL is not of the expected type SIMPLE-VECTOR.

The bug seems to have been there forever, but the recently released ASDF 1.128 and later actually uses non-standard method combinations and evokes this bug in normal use.

Change History

11/11/08 10:55:58 changed by gz

  • status changed from new to closed.
  • resolution set to fixed.

Fixed in r11349

11/11/08 10:56:29 changed by gz

  • component changed from IDE to ANSI CL Compliance.