X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=base.lisp;h=e08c251b83f4304ccc01b950b6957279b4a176ec;hb=bba0c14661b34e447456e397fc98fefebec5c4f8;hp=ebb2ece37c8932ef451c4a0d204444babd126e6c;hpb=f63edd12886a0ed33be55f49c3284acca5db4797;p=cl-modlisp.git diff --git a/base.lisp b/base.lisp index ebb2ece..e08c251 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$ ;;;; ************************************************************************* (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)))