r4820: *** empty log message ***
[umlisp.git] / parse-macros.lisp
index f3a8408719a4a0f5714a4ce294ed2beb740f13a2..d35628291d885b65f903c3c95026eec7559bf98b 100644 (file)
@@ -1,11 +1,23 @@
-;;; UMLS-Parse General
-;;; General purpose Lisp Routines for parsing UMLS files
-;;;   and inserting into SQL databases
-;;;
-;;; Copyright (c) 2001 Kevin M. Rosenberg, M.D.
-;;; $Id: parse-macros.lisp,v 1.1 2002/10/05 20:17:14 kevin Exp $
+;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10; Package: umlisp -*-
+;;;; *************************************************************************
+;;;; FILE IDENTIFICATION
+;;;;
+;;;; Name:          parse-macros.lisp
+;;;; Purpose:       Macros for UMLS file parsing
+;;;; Programmer:    Kevin M. Rosenberg
+;;;; Date Started:  Apr 2000
+;;;;
+;;;; $Id: parse-macros.lisp,v 1.3 2003/05/05 23:13:28 kevin Exp $
+;;;;
+;;;; This file, part of UMLisp, is
+;;;;    Copyright (c) 2000-2002 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.
+;;;; *************************************************************************
 
 (in-package :umlisp)
+(declaim (optimize (speed 3) (safety 1) (compilation-speed 0) (debug 3)))
 
 
 (defmacro with-umls-file ((line filename) &body body)
@@ -27,7 +39,7 @@
           (,ustream (umls-pathname ,filename)
            :direction :input :if-exists :overwrite)
         (do ((,line (read-buffered-fields ,buffer ,ustream) (read-buffered-fields ,buffer ,ustream)))
-            ((eq ,line 'eof) t)
+            ((eq ,line 'kl::eof) t)
           ,@body)))))
 
 (defmacro with-buffered2-umls-file ((line filename) &body body)