From 1a9c001bc3e3421d15c3fffd96e6ba14ae906fcd Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Sun, 6 Dec 1992 20:17:35 +0000 Subject: [PATCH] Added a #.vm:dylan-function-header-type branch to OUTPUT-FUNCTION. Also added a T branch that prints "Unknown Function" so we get some output when we stumble across unknown functions. --- code/print.lisp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/code/print.lisp b/code/print.lisp index a4735486f..09937a542 100644 --- a/code/print.lisp +++ b/code/print.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/print.lisp,v 1.45 1992/08/13 12:53:29 wlott Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/print.lisp,v 1.46 1992/12/06 20:17:35 wlott Exp $") ;;; ;;; ********************************************************************** ;;; @@ -1720,7 +1720,11 @@ (t (write-string "Closure Over " stream) (output-function-object (%primitive c::closure-function function) - stream))))))) + stream)))) + (#.vm:dylan-function-header-type + (write-string "Dylan Function" stream)) + (t + (write-string "Unknown Function" stream))))) ;;;; Catch-all for unknown things. -- GitLab