From: Vern Paxson <vern@ee.lbl.gov>
Date: Sun, 10 Oct 1993 14:52:55 +0000 (+0000)
Subject: Use DEFAULT_CSIZE only if not using equivalence classes.
X-Git-Tag: flex-2-5-5b~379
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8606320b7922e07c749a9d9106639027c6fc3e02;p=flex

Use DEFAULT_CSIZE only if not using equivalence classes.
---

diff --git a/main.c b/main.c
index 5776de4..90c6c81 100644
--- a/main.c
+++ b/main.c
@@ -621,7 +621,7 @@ char **argv;
 
 	if ( ! csize_given )
 		{
-		if ( fulltbl || fullspd )
+		if ( (fulltbl || fullspd) && ! useecs )
 			csize = DEFAULT_CSIZE;
 		else
 			csize = CSIZE;