diff options
author | Karl Williamson <public@khwilliamson.com> | 2010-11-27 20:49:49 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2010-11-28 04:49:16 -0800 |
commit | f5ecd18d6d228e264c76bed78eb035ba36b01b40 (patch) | |
tree | 750709b6fb3f6f9c97d3cf409cc5043dd87961e9 /regcomp.c | |
parent | 62012aee33c9aaffb325cdf706d389d952eb13ad (diff) | |
download | perl-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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}"); { |