regcomp.c: Remove extraneous debug info
authorKarl Williamson <public@khwilliamson.com>
Tue, 30 Jul 2013 17:27:20 +0000 (11:27 -0600)
committerKarl Williamson <public@khwilliamson.com>
Tue, 30 Jul 2013 18:05:48 +0000 (12:05 -0600)
commit36b347b9c8caf3680cadf3c3cb98018a41a92507
treefdfcec3c25e649d74372f072122e239ccd3e764e
parentb60fb2ed2680b5d8e070d120472a5888810bbd95
regcomp.c: Remove extraneous debug info

Prior to this commit the prhase {unicode} was emitted to mark what a
bracketed character class matched that wasn't in that classes bitmap.
This was oftern accompanied by another phrase that gave further
details.  Since everything is {unicode}, the first phrase isn't very
helpful.  Now it is changed to {utf8} for those things that won't match
unless the target string is in utf8 (this includes some upper latin1
code points under /d matches), or {outside bitmap} for where utf8 isn't
necessasily required (this happens for user-defined Unicode properties
that aren't known at compile time).
regcomp.c