From ed8e32ed60d7e054a8b515184b3cce8c376a7fcf Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Wed, 15 May 1991 16:38:30 +0000 Subject: [PATCH] Added a dummy definition of INSPECT for when we have no CLX. --- code/tty-inspect.lisp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/code/tty-inspect.lisp b/code/tty-inspect.lisp index a3d880169..64b8f0f6a 100644 --- a/code/tty-inspect.lisp +++ b/code/tty-inspect.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/tty-inspect.lisp,v 1.8 1991/05/15 16:31:54 ram Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/tty-inspect.lisp,v 1.9 1991/05/15 16:38:30 ram Exp $") ;;; ;;; ********************************************************************** ;;; @@ -50,6 +50,10 @@ (cdr (nth (+ n parts-offset) parts)) (nth (+ n parts-offset) parts))) +;;; Dummy definition for when we have no CLX... +(defun inspect (object) + (tty-inspect object)) + (defun tty-inspect (object) (unwind-protect (input-loop object (describe-parts object) *standard-output*) -- GitLab