regcomp.c: Remove unnecessary flag setting
authorKarl Williamson <public@khwilliamson.com>
Thu, 27 Dec 2012 19:15:56 +0000 (12:15 -0700)
committerKarl Williamson <public@khwilliamson.com>
Fri, 28 Dec 2012 17:38:55 +0000 (10:38 -0700)
commitc81eddd4019656a9d3dd5eb32bc00b9ca72f26d9
treed6b32687c17be4d5b7cb85feefbc0303b55bd9b0
parentb25a103638bc5111446c1e65a21db00a6e13acc1
regcomp.c: Remove unnecessary flag setting

The function cl_anything() sets things up so that the synthetic start
class parameter will match any character.  But this flag doesn't
contribute to that, as it sets things to match under certain conditions
only, and the characters it matches already match by the other actions
of the routine (the ANYOF_BITMAP_SETALL just above).
regcomp.c