summaryrefslogtreecommitdiff
path: root/regcomp.c
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2010-11-27 20:49:49 -0700
committerFather Chrysostomos <sprout@cpan.org>2010-11-28 04:49:16 -0800
commitf5ecd18d6d228e264c76bed78eb035ba36b01b40 (patch)
tree750709b6fb3f6f9c97d3cf409cc5043dd87961e9 /regcomp.c
parent62012aee33c9aaffb325cdf706d389d952eb13ad (diff)
downloadperl-f5ecd18d6d228e264c76bed78eb035ba36b01b40.tar.gz
Fix debug output
The 'outside bitmap' message isn't orthogonal to the others, it is independent.
Diffstat (limited to 'regcomp.c')
-rw-r--r--regcomp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/regcomp.c b/regcomp.c
index 4ab44866de..72afd069cb 100644
--- a/regcomp.c
+++ b/regcomp.c
@@ -9659,7 +9659,7 @@ Perl_regprop(pTHX_ const regexp *prog, SV *sv, const regnode *o)
sv_catpvs(sv, "{unicode_all}");
else if (flags & ANYOF_UTF8)
sv_catpvs(sv, "{unicode}");
- else if (flags & ANYOF_NONBITMAP)
+ if (flags & ANYOF_NONBITMAP_NON_UTF8)
sv_catpvs(sv, "{outside bitmap}");
{