Changeset 8201
- Timestamp:
- Jan 17, 2008, 9:29:50 AM (17 years ago)
- File:
-
- 1 edited
-
trunk/source/objc-bridge/objc-clos.lisp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/objc-bridge/objc-clos.lisp
r7375 r8201 776 776 (declare (ignore ignore)) 777 777 (if foundp 778 (if (funcall typepred newval) 778 (if (or (null typepred) 779 (funcall typepred newval)) 779 780 (setf (slot-value instance sname) newval) 780 781 (report-bad-arg newval slot-type)) … … 787 788 initfunction) 788 789 (let ((newval (funcall initfunction))) 789 (unless (funcall typepred newval) 790 (unless (or (null typepred) 791 (funcall typepred newval)) 790 792 (report-bad-arg newval slot-type)) 791 793 (setf (%standard-instance-instance-location-access
Note:
See TracChangeset
for help on using the changeset viewer.
