summaryrefslogtreecommitdiff
path: root/nfa.c
diff options
context:
space:
mode:
authorWill Estes <wlestes@users.sourceforge.net>2002-02-06 21:41:52 +0000
committerWill Estes <wlestes@users.sourceforge.net>2002-02-06 21:41:52 +0000
commit27598b73c0a62a2132e71c7a61d61acb6619390e (patch)
tree690a9798326b1a3aa6c2e2c8f2658e05dfffa62c /nfa.c
parentcb4534f04781e46765889d1b7fedf28db37d0d2d (diff)
downloadflex-git-27598b73c0a62a2132e71c7a61d61acb6619390e.tar.gz
support large flex tables; from debian package maintainer
Diffstat (limited to 'nfa.c')
-rw-r--r--nfa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nfa.c b/nfa.c
index bcebbdc..65634e1 100644
--- a/nfa.c
+++ b/nfa.c
@@ -598,7 +598,7 @@ int sym;
{
if ( ++lastnfa >= current_mns )
{
- if ( (current_mns += MNS_INCREMENT) >= MAXIMUM_MNS )
+ if ( (current_mns += MNS_INCREMENT) >= maximum_mns )
lerrif(
_( "input rules are too complicated (>= %d NFA states)" ),
current_mns );