Skip to content
Snippets Groups Projects
Commit f2251d1b authored by pw's avatar pw
Browse files

Second attempt at using new cvs server. Hopefully mail system config

problems are fixed now.

This revision fixes an omission from a previous rev that added support
for :print-object and :print-function defstruct options. The default
method created was calling DEFAULT-STRUCTURE-PRINT with only two
arguments. It seems to work correctly now.
parent f172ab27
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain. ;;; Carnegie Mellon University, and has been placed in the public domain.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/defstruct.lisp,v 1.73 2001/03/15 18:01:36 pw Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/defstruct.lisp,v 1.74 2001/09/21 12:00:43 pw Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -328,7 +328,6 @@ ...@@ -328,7 +328,6 @@
(declare (ignore depth)) (declare (ignore depth))
(format stream "#<Defstruct-Slot-Description for ~S>" (dsd-name structure))) (format stream "#<Defstruct-Slot-Description for ~S>" (dsd-name structure)))
(defun dd-maybe-make-print-method (defstruct) (defun dd-maybe-make-print-method (defstruct)
;; Maybe generate CLOS DEFMETHOD forms for :print-function/:print-object. ;; Maybe generate CLOS DEFMETHOD forms for :print-function/:print-object.
(let ((print-function-value (dd-print-function defstruct))) (let ((print-function-value (dd-print-function defstruct)))
...@@ -337,17 +336,17 @@ ...@@ -337,17 +336,17 @@
(function (cdr print-function-value))) (function (cdr print-function-value)))
(unless (eq kind 'lambda) (unless (eq kind 'lambda)
(setf (dd-print-function defstruct) nil) (setf (dd-print-function defstruct) nil)
(let* ((name (dd-name defstruct)) (let* ((class (dd-name defstruct))
(function (if (symbolp function) `',function `#',function)) (func (if (symbolp function) `',function `#',function)))
(mcall `(funcall ,function o s))
(fcall `(funcall ,function o s *current-level*)))
;; We can only generate this code if CLOS is loaded. Maybe should ;; We can only generate this code if CLOS is loaded. Maybe should
;; signal an error instead of quietly ignoring the defmethod? ;; signal an error instead of quietly ignoring the defmethod?
`((when (fboundp 'print-object) `((when (fboundp 'print-object)
(defmethod print-object ((o ,name) s) (defmethod print-object ((object ,class) stream)
,(ecase kind (funcall
(:print-object mcall) ,func object stream
(:print-function fcall))))))))))) ,@(when (or (eq kind :print-function)
(eq function 'default-structure-print))
'(*current-level*))))))))))))
;;; The legendary macro itself. ;;; The legendary macro itself.
......
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