regcomp.c: /l uses the \w, etc. classes
authorKarl Williamson <public@khwilliamson.com>
Sun, 20 Mar 2011 00:37:53 +0000 (18:37 -0600)
committerKarl Williamson <public@khwilliamson.com>
Sun, 20 Mar 2011 01:01:37 +0000 (19:01 -0600)
commit9d7a1e6315426819da0d6af6dc79fde72e9c8c08
tree455239de8de6869c0652b08e17c915afcf617904
parentd94b1d13d0aa079f8a6d2ee1aac4ed342a28901f
regcomp.c: /l uses the \w, etc. classes

For non-locale, \d, etc are compiled in with their actual code points they
match, so the class portion of the synthetic start class node is
irrelevant, and should initialized to zero to avoid confusion.  But for
locale it is highly relevant, and should be initialized to all ones, to
indicate matching anything.
regcomp.c