* contrib/sb-aclrepl/: Fix error with cl:inspect
double evaluating arguments. Bug reported by Christophe Rhodes
on sbcl-devel 2003-11-15.
(*inspect-raw* nil)
(*inspect-length* *inspect-length*)
(*skip-address-display* nil))
- (setq object (eval object))
(setq *current-inspect* (make-inspect))
(reset-stack object "(inspect ...)")
(redisplay output-stream)
(values)))
(defun inspect-cmd (arg)
- (inspector-fun arg nil *output*)
+ (inspector-fun (eval arg) nil *output*)
(values))
(defun istep-cmd (&optional arg-string)
;;; checkins which aren't released. (And occasionally for internal
;;; versions, especially for internal versions off the main CVS
;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"0.8.5.40"
+"0.8.5.41"