Skip to content
Snippets Groups Projects
Commit 2a1a35d7 authored by ram's avatar ram
Browse files

Fix arg order to print-unreadable-object.

parent 5ed06af1
No related branches found
No related tags found
No related merge requests found
......@@ -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)))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment