X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=parse-common.lisp;h=28a57db74ed78405a9b352558c4426f30d655ebe;hb=5be6bdf06e0c99612a4c1a1d6f110e424400d96e;hp=bca8940c9232bed5688c014aa1945af96c4cf9c1;hpb=45453f00199223924481c8d6d614972a327a250f;p=umlisp.git diff --git a/parse-common.lisp b/parse-common.lisp index bca8940..28a57db 100644 --- a/parse-common.lisp +++ b/parse-common.lisp @@ -7,10 +7,10 @@ ;;;; Author: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: parse-common.lisp,v 1.13 2003/05/08 04:36:12 kevin Exp $ +;;;; $Id$ ;;;; ;;;; This file, part of UMLisp, is -;;;; Copyright (c) 2000-2002 by Kevin M. Rosenberg, M.D. +;;;; Copyright (c) 2000-2003 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. @@ -72,7 +72,7 @@ Currently, these are the LEX and NET files." (destructuring-bind (filename fields-max fields-av) length-list (let ((file (find-ufile filename))) (unless file - (error "Can't find ~A filename in ufiles")) + (error "Can't find ~A filename in ufiles" filename)) (unless (= (length fields-max) (length (fields file))) (error "Number of file fields ~A not equal to field count in ufile ~S" @@ -176,7 +176,9 @@ Currently, these are the LEX and NET files." (quote-str "'") (custom-value-fun)) (let ((ucol (make-instance 'ucol - :col col :des des :ref ref :min min :av av :max max :fil fil + :col col :des des :ref ref :min min :av av + :max (if (eql max 0) 1 max) ;; ensure at least one char wide + :fil fil :dty dty :sqltype sqltype :quote-str quote-str :parse-fun (ensure-compiled-fun parse-fun) :custom-value-fun (ensure-compiled-fun custom-value-fun)))) @@ -184,7 +186,7 @@ Currently, these are the LEX and NET files." ucol)) (defun make-empty-ucol (colname filename) - (warn "call in make-empty-ucol: ~A/~A" colname filename) + ;;(format "call in make-empty-ucol: ~A/~A" colname filename) (make-ucol (copy-seq colname) "Unknown" "" nil nil nil filename nil)) (defun find-ucol (colname filename)