r3618: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Fri, 13 Dec 2002 09:16:13 +0000 (09:16 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Fri, 13 Dec 2002 09:16:13 +0000 (09:16 +0000)
classes.lisp

index 87c058a1914d19d4a6e280e8cc9a9a1bbb64c2b8..abf07fea757fe7a81f3c24a8cb013e956c4b115c 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Apr 2000
 ;;;;
-;;;; $Id: classes.lisp,v 1.24 2002/12/13 07:34:20 kevin Exp $
+;;;; $Id: classes.lisp,v 1.25 2002/12/13 09:16:13 kevin Exp $
 ;;;;
 ;;;; This file, part of UMLisp, is
 ;;;;    Copyright (c) 2000-2002 by Kevin M. Rosenberg, M.D.
   (multiple-value-bind (is-english is-term) (english-term-p obj)
       (or (not is-term) is-english)))
 
-(defun print-umlsclass (obj &key (os *standard-output*) (category :compact-text)
+(defun print-umlsclass (obj &key (stream *standard-output*) (category :compact-text)
                        (file-wrapper t) (english-only nil) (subobjects nil)
                        (refvars nil))
-  (view obj :stream os :category category :subobjects subobjects
+  (view obj :stream stream :category category :subobjects subobjects
        :file-wrapper file-wrapper
        :filter (if english-only nil #'english-term-filter)
        :refvars refvars))