Bump the size of the equivalence set to NCHARS; this file was left out

of a previous commit implementing equivalence classes.
This commit is contained in:
Tim J. Robbins 2002-06-14 15:53:38 +00:00
parent dc957e3d2b
commit 4efc23dabf
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=98221

View File

@ -39,7 +39,7 @@ typedef struct {
enum { EOS, INFINITE, NORMAL, RANGE, SEQUENCE, SET } state;
int cnt; /* character count */
int lastch; /* last character */
int equiv[2]; /* equivalence set */
int equiv[NCHARS]; /* equivalence set */
int *set; /* set of characters */
char *str; /* user's string */
} STR;