regcomp.c: Split #define into two
authorKarl Williamson <public@khwilliamson.com>
Mon, 30 Dec 2013 22:04:37 +0000 (15:04 -0700)
committerKarl Williamson <public@khwilliamson.com>
Tue, 31 Dec 2013 15:27:20 +0000 (08:27 -0700)
commiteff8b7dc9a14f3aa38ddb85d01d614da4c6d8957
tree38cfce0dee0974af24c36a39fd2ef6f5f25f556a
parent5aa602328b19a4ecb1353379f390fcabd026cc2b
regcomp.c: Split #define into two

The syntethic start class regnode (SSC) and a bracketed character class
node share much of the same data structure, including a flags field,
and some of the same flag bits within it.  Currently, only
locale-related flags (under /l rules) are the same between the two
during construction of the SSC.  But a future commit will introduce
another common flag.  This commit creates an extra #define for use where
we want the common flags, while retaining the existing one for use where
we want the locale flags.  The new #define is just a copy of the
existing one, to be changed in the future commit.
regcomp.c
regcomp.h