From 2a1a35d715f764fe5b766d0e62db2508a4c957c5 Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Sun, 14 Mar 1993 16:54:03 +0000 Subject: [PATCH] Fix arg order to print-unreadable-object. --- code/defstruct.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/defstruct.lisp b/code/defstruct.lisp index b46b5f941..727af31f8 100644 --- a/code/defstruct.lisp +++ b/code/defstruct.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/defstruct.lisp,v 1.45 1993/03/14 14:35:58 ram Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/defstruct.lisp,v 1.46 1993/03/14 16:54:03 ram Exp $") ;;; ;;; ********************************************************************** ;;; @@ -1445,7 +1445,7 @@ (defun default-structure-print (structure stream depth) (declare (ignore depth)) (if (funcallable-instance-p structure) - (print-unreadable-object (stream structure :identity t :type t) + (print-unreadable-object (structure stream :identity t :type t) (write-string "Funcallable Structure" stream)) (let* ((type (%instance-layout structure)) (name (class-name (layout-class type))) -- GitLab