X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=parse-common.lisp;h=28a57db74ed78405a9b352558c4426f30d655ebe;hb=5be6bdf06e0c99612a4c1a1d6f110e424400d96e;hp=452d4ec15c9dbf07eeeea362b2dea59f7c5109e7;hpb=fca7a50cb4e7574de861601d8aa0bcb9921f58de;p=umlisp.git diff --git a/parse-common.lisp b/parse-common.lisp index 452d4ec..28a57db 100644 --- a/parse-common.lisp +++ b/parse-common.lisp @@ -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))))