remove invalid code from TRE
authorRich Felker <dalias@aerifal.cx>
Fri, 13 Apr 2012 23:50:58 +0000 (19:50 -0400)
committerRich Felker <dalias@aerifal.cx>
Fri, 13 Apr 2012 23:50:58 +0000 (19:50 -0400)
commit386b34a07bc65b6b0627d04105f60fb5fa79df33
treedb6f140875f61e8e68655a757d8b4665b8ee7fcf
parentb6dbdc69b6d969b416428e0eb467eefbe5a7837f
remove invalid code from TRE

TRE wants to treat + and ? after a +, ?, or * as special; ? means
ungreedy and + is reserved for future use. however, this is
non-conformant. although redundant, these redundant characters have
well-defined (no-op) meaning for POSIX ERE, and are actually _literal_
characters (which TRE is wrongly ignoring) in POSIX BRE mode.

the simplest fix is to simply remove the unneeded nonstandard
functionality. as a plus, this shaves off a small amount of bloat.
src/regex/regcomp.c