X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=base.lisp;h=5fc67e4974f55d4d56b443b3d17f321981ba4775;hb=49f84ccd7347606524722e1c064027bb7c96c3a6;hp=ebb2ece37c8932ef451c4a0d204444babd126e6c;hpb=e62a511f8a23b53b8e9e002c1b0c759bfff75390;p=cl-modlisp.git diff --git a/base.lisp b/base.lisp index ebb2ece..5fc67e4 100644 --- a/base.lisp +++ b/base.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Dec 2002 ;;;; -;;;; $Id: base.lisp,v 1.13 2003/07/16 20:40:43 kevin Exp $ +;;;; $Id: base.lisp,v 1.14 2003/08/18 05:48:55 kevin Exp $ ;;;; ************************************************************************* (in-package #:modlisp) @@ -91,9 +91,7 @@ (defun read-modlisp-header () (loop for key = (read-modlisp-line) - while (and key - (string-not-equal key "end") - (> (length key) 1)) + while (and key (string-not-equal key "end")) for value = (read-modlisp-line) collect (cons (ensure-keyword key) value)))