diff --git a/code/tty-inspect.lisp b/code/tty-inspect.lisp
index a3d88016948fb9fcaedb8fc7f734122f85f4ac66..64b8f0f6ac0fc82ba48abc5b4d410b3cf464077c 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*)