From: Kevin M. Rosenberg Date: Thu, 12 Jun 2003 12:02:31 +0000 (+0000) Subject: r5098: *** empty log message *** X-Git-Tag: debian-2.11.0-2~58 X-Git-Url: http://git.kpe.io/?p=hyperobject.git;a=commitdiff_plain;h=86acb3681c00ae3c64cdb1f1d4296e136ed55cd4 r5098: *** empty log message *** --- diff --git a/views.lisp b/views.lisp index 7cf370d..e5ada41 100644 --- a/views.lisp +++ b/views.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: views.lisp,v 1.51 2003/06/12 11:10:38 kevin Exp $ +;;;; $Id: views.lisp,v 1.52 2003/06/12 12:02:31 kevin Exp $ ;;;; ;;;; This file is Copyright (c) 2000-2003 by Kevin M. Rosenberg ;;;; ************************************************************************* @@ -530,9 +530,11 @@ (write-simple (car var) s) (write-char #\= s) (write-simple (cdr var) s)) - (write-char #\" s))) - ((or symbol function) - (funcall link-page fieldfunc fieldvalue refvars s))))) + (write-char #\" s)) + (null + nil) + ((or symbol function) + (funcall link-page fieldfunc fieldvalue refvars s)))))) (defun make-link-end (obj view fieldname) (declare (ignore obj fieldname)) @@ -580,7 +582,6 @@ (defun view-hyperobject (objs view category strm &optional (indent 0) filter subobjects refvars) "Display a single or list of hyperobject-class instances and their subobjects" - (declare (fixnum indent)) (let-when (objlist (mklist objs)) (let ((nobjs (length objlist)) (*print-pretty* nil) @@ -597,7 +598,9 @@ (when (and subobjects (hyperobject-class-subobjects obj)) (dolist (subobj (hyperobject-class-subobjects obj)) (aif (slot-value obj (name-slot subobj)) - (view-hyperobject it (get-category-view (car (mklist it)) category) + (view-hyperobject it + (get-category-view (car (mklist it)) + category) category strm (1+ indent) filter subobjects refvars)))) (fmt-obj-end obj view strm indent))) @@ -607,7 +610,7 @@ (defun view (objs &key (stream *standard-output*) category view filter subobjects refvars file-wrapper) - "EXPORTED Function: prints hyperobject-class objects. Simplies call to view-hyperobject" + "EXPORTED Function: prints hyperobject-class objects. Calls view-hyperobject" (let-when (objlist (mklist objs)) (when category (setq view (get-category-view (car objlist) category)))