[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Bug in Xerox-low.lisp
- To: commonloops.PA@Xerox.COM
- Subject: Bug in Xerox-low.lisp
- From: Arun Welch <welch@cis.ohio-state.edu>
- Date: Thu, 8 Dec 88 18:04:26 EST
- Redistributed: commonloops.PA
I suspect that the last form in xerox-low.lisp should be:
(defun set-function-name-1 (fn new-name uninterned-name)
(cond ((typep fn 'il:compiled-closure)
(il:\\rplptr (compiled-closure-fnheader fn) 4 new-name)
((when (and (consp uninterned-name)
(eq (car uninterned-name) 'method)))
(let ((debug (si::compiled-function-debugging-info fn)))
(when debug (setf (cdr debug) uninterned-name)))))
(t nil))
fn)
rather than it's current form.
...arun