[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
PCL on TI Explorers
- To: commonloops.pa@Xerox.COM
- Subject: PCL on TI Explorers
- From: "Daniel L. Cerys" <Cerys@XX.LCS.MIT.EDU>
- Date: Wed, 23 Mar 88 11:50:40 EST
- Redistributed: commonloops.pa
- Sender: cerys@RTS-12.ARPA
I just attempted to compile PCL on a TI Explorer but failed since there
was no function-spec handler for pcl:method's. The following simple
handler definition makes PCL usable on Explorers. This should probably
go in TI-LOW.LISP.
;;;Added by Dan Cerys 22 Mar 88
(ticl:defprop method method-function-spec-handler sys:function-spec-handler)
(defun method-function-spec-handler (function function-spec &optional arg1 arg2)
(let ((symbol (second function-spec)))
(case function
(sys:validate-function-spec t)
(otherwise (sys:function-spec-default-handler function function-spec arg1 arg2)))))
[At some point, this handler should be augmented to handle other
operations.]
Dan