From: Kevin M. Rosenberg Date: Thu, 12 Jun 2003 16:37:44 +0000 (+0000) Subject: r5113: *** empty log message *** X-Git-Tag: v2006ac.2~142 X-Git-Url: http://git.kpe.io/?p=umlisp.git;a=commitdiff_plain;h=c46d4ff7e202966b36bbcd91054c51e7cc2a0517 r5113: *** empty log message *** --- diff --git a/class-support.lisp b/class-support.lisp index 413f314..5f8778d 100644 --- a/class-support.lisp +++ b/class-support.lisp @@ -7,7 +7,7 @@ ;;;; Author: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: class-support.lisp,v 1.11 2003/06/10 22:30:16 kevin Exp $ +;;;; $Id: class-support.lisp,v 1.12 2003/06/12 16:37:44 kevin Exp $ ;;;; ;;;; This file, part of UMLisp, is ;;;; Copyright (c) 2000-2003 by Kevin M. Rosenberg, M.D. @@ -95,12 +95,14 @@ (multiple-value-bind (is-english is-term) (english-term-p obj) (or (not is-term) is-english))) -(defun print-umlsclass (obj &key (stream *standard-output*) (category :compact-text) - (file-wrapper t) (english-only nil) (subobjects nil) - (refvars nil)) +(defun print-umlsclass (obj &key (stream *standard-output*) + (category :compact-text) + (file-wrapper t) (english-only t) (subobjects nil) + (refvars nil) (link-printer nil)) (view obj :stream stream :category category :subobjects subobjects :file-wrapper file-wrapper :filter (if english-only nil #'english-term-filter) + :link-printer link-printer :refvars refvars)) (defmacro define-lookup-display (newfuncname lookup-func)