X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=base-class.lisp;h=24c24a386c07133b644bd1e4e84f6078f2d79b32;hb=a7f7ec44e3acd442817630a912b5a0c581e23538;hp=0da829b3d209a27fb0dffeac4ccd016b080efc52;hpb=9ccad91c1ec86cd90e8b591c29ec85aff9c89268;p=hyperobject.git diff --git a/base-class.lisp b/base-class.lisp index 0da829b..24c24a3 100644 --- a/base-class.lisp +++ b/base-class.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: base-class.lisp,v 1.3 2002/12/13 05:44:19 kevin Exp $ +;;;; $Id: base-class.lisp,v 1.4 2002/12/13 08:25:45 kevin Exp $ ;;;; ;;;; This file is Copyright (c) 2000-2002 by Kevin M. Rosenberg ;;;; ************************************************************************* @@ -25,7 +25,7 @@ (defmethod print-object ((obj hyperobject) (s stream)) (print-unreadable-object (obj s :type t :identity t) (let ((view (get-category-view obj :compact-text))) - (apply #'format s (slot-value view 'obj-data-fmtstr) + (apply #'format s (obj-data-fmtstr view) (multiple-value-list - (funcall (slot-value view 'obj-data-value-func) obj)))))) + (funcall (obj-data-value-func view) obj))))))