[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

confirmation on EQL



I am using March 88 version of PCL.

(defmethod foo ((x (eql a))) ...)
is OK for PCL. And is interpreted as an individual method for symbol A.

But, CLOS specification 88-002R tells the form for EQL-specializer form
should be evaluated.
I should rewrite the above defmethod to
(defmethod foo ((x (eql 'a))) ...)
                        ||
to conform CLOS spec.


Do the July version have no problem on conformance as for eql-thing ?

Masayuki Ida