X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=data-structures.lisp;h=d76a5c23697e18379dc2e36df819554ca20f5f33;hb=ab8b9c83accebd43e817e1d5cee6a8f7fb9a7eab;hp=c869160f890faf6f971d9c9b8c5ed48108d6c25a;hpb=8dc001f5e7cf851c06006e489473a85611d348be;p=umlisp.git diff --git a/data-structures.lisp b/data-structures.lisp index c869160..d76a5c2 100644 --- a/data-structures.lisp +++ b/data-structures.lisp @@ -8,7 +8,7 @@ ;;;; Created: Apr 2000 ;;;; ;;;; This file, part of UMLisp, is -;;;; Copyright (c) 2000-2010 by Kevin M. Rosenberg, M.D. +;;;; Copyright (c) 2000-2011 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. @@ -18,10 +18,10 @@ ;;; Paths for files -(defparameter *release* "2009AB") +(defparameter *release* "2014AB") (defparameter *umls-path* - (make-pathname :directory (list :absolute "srv" "umls" *release*)) + (make-pathname :directory (list :absolute "srv" "umls" *release* *release*)) "Path for base of UMLS data files") (defparameter *meta-dir* @@ -42,7 +42,7 @@ (defparameter *net-path* (merge-pathnames *net-dir* *umls-path*)) -(defun umls-path! (p) +(defun set-umls-path (p) (setq *umls-path* (etypecase p (string (parse-namestring p)) (pathname p))) @@ -111,5 +111,3 @@ (defmethod print-object ((obj ucol) s) (print-unreadable-object (obj s :type t) (format s "~A" (col obj)))) - -