From 7f6cbd20ca01e6f29b4fa7d68a0908864e400320 Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Wed, 14 May 2003 04:38:36 +0000 Subject: [PATCH] r4921: Auto commit for Debian build --- views.lisp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/views.lisp b/views.lisp index f44f800..caf7ad3 100644 --- a/views.lisp +++ b/views.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: views.lisp,v 1.33 2003/05/14 04:28:09 kevin Exp $ +;;;; $Id: views.lisp,v 1.34 2003/05/14 04:38:36 kevin Exp $ ;;;; ;;;; This file is Copyright (c) 2000-2002 by Kevin M. Rosenberg ;;;; @@ -214,6 +214,7 @@ (ppfc-xml tag name type formatter cdata print-func)) (defun ppfc-html-link (name type formatter cdata nlink print-func) + (declare (fixnum nlink)) (vector-push-extend '(write-char #\< s) print-func) (vector-push-extend `(write-string (nth ,(+ nlink nlink) links) s) print-func) (vector-push-extend '(write-char #\> s) print-func) @@ -514,9 +515,9 @@ (defun initialize-text-view (view) (setf (list-start-str-or-func view) (compile nil - #'(lambda (obj nitems strm) + (eval '(lambda (obj nitems strm) (format strm "~a~P:~%" - (hyperobject-class-user-name obj) nitems)))) + (hyperobject-class-user-name obj) nitems))))) (setf (list-start-indent view) t) (setf (obj-data-indent view) t) (setf (obj-data-end-str view) +newline-string+)) @@ -694,6 +695,7 @@ (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) -- 2.34.1