From: SourceForge.net <no...@so...> - 2011-08-02 16:20:01
|
Bugs item #3384825, was opened at 2011-08-02 12:20 Message generated for change (Tracker Item Submitted) made by sds You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=101355&aid=3384825&group_id=1355 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: clisp Group: ANSI compliance issue Status: Open Resolution: None Priority: 5 Private: No Submitted By: Sam Steingold (sds) Assigned to: Sam Steingold (sds) Summary: simple condition printing ignores user-supplied methods Initial Comment: (with-output-to-string (s) (define-condition my-simple (simple-condition) () (:report (lambda (c s) (format s "good: ~S overrides SIMPLE-CONDITION" (type-of c))))) (princ (make-condition 'my-simple :format-control "bad: SIMPLE-CONDITION overrides MY-SIMPLE") s)) sbcl: "good: MY-SIMPLE overrides SIMPLE-CONDITION" clisp: "bad: SIMPLE-CONDITION overrides MY-SIMPLE" ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=101355&aid=3384825&group_id=1355 |