Changes needed for 2009AB version of UMLS
[umlisp.git] / data-structures.lisp
index 9fc75fffeeee6b6babd14da13f756bcb112b8937..c869160f890faf6f971d9c9b8c5ed48108d6c25a 100644 (file)
@@ -2,15 +2,13 @@
 ;;;; *************************************************************************
 ;;;; FILE IDENTIFICATION
 ;;;;
-;;;; Name:    data-structures.lisp
+;;;; Name:     data-structures.lisp
 ;;;; Purpose:  Basic data objects for UMLisp
 ;;;; Author:   Kevin M. Rosenberg
 ;;;; Created:  Apr 2000
 ;;;;
-;;;; $Id$
-;;;;
 ;;;; This file, part of UMLisp, is
-;;;;    Copyright (c) 2000-2006 by Kevin M. Rosenberg, M.D.
+;;;;    Copyright (c) 2000-2010 by Kevin M. Rosenberg, M.D.
 ;;;;
 ;;;; UMLisp users are granted the rights to distribute and use this software
 ;;;; as governed by the terms of the GNU General Public License.
@@ -20,7 +18,7 @@
 
 ;;; Paths for files
 
-(defparameter *release* "2006AD")
+(defparameter *release* "2009AB")
 
 (defparameter *umls-path*
   (make-pathname :directory (list :absolute "srv" "umls" *release*))
   (:documentation "UMLS column"))
 
 
-(defmethod print-object ((obj ufile) (s stream))
+(defmethod print-object ((obj ufile) s)
   (print-unreadable-object (obj s :type t)
     (format s "~A" (fil obj))))
 
-(defmethod print-object ((obj ucol) (s stream))
+(defmethod print-object ((obj ucol) s)
   (print-unreadable-object (obj s :type t)
     (format s "~A" (col obj))))