r3068: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Wed, 16 Oct 2002 16:09:55 +0000 (16:09 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Wed, 16 Oct 2002 16:09:55 +0000 (16:09 +0000)
composite.lisp

index 9b5f60199a65eede49754dfa5d8624bf178cc0a6..07307139abf38e161f1bb06f51486086fabafd32 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Apr 2000
 ;;;;
-;;;; $Id: composite.lisp,v 1.6 2002/10/16 16:05:23 kevin Exp $
+;;;; $Id: composite.lisp,v 1.7 2002/10/16 16:09:55 kevin Exp $
 ;;;;
 ;;;; This file, part of UMLisp, is
 ;;;;    Copyright (c) 2000-2002 by Kevin M. Rosenberg, M.D.
   (:metaclass kmrcl:ml-class)
   (:default-initargs :usty nil :freq nil)
   (:title "Semantic Type and Count")
-  (:ref-fields (tui find-ucon-tui "subobjects=no"))
+;;  (:ref-fields (tui find-ucon-tui "subobjects=no"))
+  (:ref-fields (tui find-ucon-tui))
   (:fields (tui :string fmt-tui) (freq :fixnum) (sty :string))
   (:documentation "Composite object of usty/freq"))
 
 (defmethod tui ((s usty_freq))
-  (usty-tui (usty_freq-usty s)))
+  (tui (usty s)))
 
 (defmethod sty ((s usty_freq))
-  (usty-sty (usty_freq-usty s)))
+  (sty (usty s)))
 
 
 (defun find-usty_freq-all ()