[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Bug in Checking Initargs
- To: commonloops.pa@Xerox.COM
- Subject: Bug in Checking Initargs
- From: Ramana Rao <rao@arisia.Xerox.COM>
- Date: Fri, 12 May 89 09:38:45 PDT
- Redistributed: commonloops.pa
- Reply-to: <rao@arisia.Xerox.COM>
(in-package 'pcl)
(defclass foo ()
())
(defmethod initialize-instance :after ((foo foo) &rest args)
nil)
;; Shouldn't the &rest in initialize-instance on foo allow the following.
;; I think so.
(make-instance 'foo :bar :baz)