[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
that's cli::generic-function-p, not pcl:generic-function-p
- To: commonloops.pa@Xerox.COM
- Subject: that's cli::generic-function-p, not pcl:generic-function-p
- From: James J. Cherry <cherry@VALLECITO.SCRC.Symbolics.COM>
- Date: Mon, 14 Mar 88 00:58 EST
- Cc: hornig@VALLECITO.SCRC.Symbolics.COM
- Redistributed: commonloops.pa@XEROX.ARPA
- Supersedes: <19880314055636.6.CHERRY@MERCED.SCRC.Symbolics.COM>
From 3600-low.lisp, the call to generic-function-p in
setup-function-specs-to-edit-advice-1 is missing the cli:: package.
This breaks the c-e debugger cmd on smbx systems.
(sorry for the last bug - it is sys: in 7.2, but cli:: in 7.1)
(defun setup-function-specs-to-edit-advice-1 (spec)
(and (or (symbolp spec)
(and (listp spec) (eq (car spec) 'setf)))
(gboundp spec)
(cli::generic-function-p (gdefinition spec))
;; ^^^^
(mapcar #'(lambda (m)
(make-method-spec spec
(method-options m)
(unparse-specializers
(method-type-specifiers m))))
(generic-function-methods (gdefinition spec)))))