From 605b0dacff11189b8e32019073d03f60df485f4b Mon Sep 17 00:00:00 2001
From: pw <pw>
Date: Sat, 15 Mar 1997 19:54:24 +0000
Subject: [PATCH] Small enhancement to sanity check in previous fix.

---
 compiler/generic/new-genesis.lisp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/compiler/generic/new-genesis.lisp b/compiler/generic/new-genesis.lisp
index 7fae87a2c..fffd0c880 100644
--- a/compiler/generic/new-genesis.lisp
+++ b/compiler/generic/new-genesis.lisp
@@ -4,7 +4,7 @@
 ;;; Carnegie Mellon University, and has been placed in the public domain.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/new-genesis.lisp,v 1.22 1997/03/15 17:24:53 pw Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/new-genesis.lisp,v 1.23 1997/03/15 19:54:24 pw Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -1611,7 +1611,7 @@
 	    (setq line (string-trim '(#\Space #\Tab) line)))
 	  (let ((p1 (position-if #'whitespacep line :from-end nil))
 		(p2 (position-if #'whitespacep line :from-end t)))
-	    (if (not (and p1 p2))
+	    (if (not (and p1 p2 (< p1 p2)))
 		(warn "Ignoring malformed line ~s in ~a" line filename)
 		(multiple-value-bind
 		    (value name)
-- 
GitLab