X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=data-structures.lisp;fp=data-structures.lisp;h=c869160f890faf6f971d9c9b8c5ed48108d6c25a;hb=8dc001f5e7cf851c06006e489473a85611d348be;hp=9fc75fffeeee6b6babd14da13f756bcb112b8937;hpb=bfdadbcc62f9b2f4e6d5bdb96683b5aa1187e0a1;p=umlisp.git diff --git a/data-structures.lisp b/data-structures.lisp index 9fc75ff..c869160 100644 --- a/data-structures.lisp +++ b/data-structures.lisp @@ -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*)) @@ -106,11 +104,11 @@ (: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))))