diff options
author | Karl Williamson <public@khwilliamson.com> | 2013-02-24 17:23:15 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2013-08-29 09:55:56 -0600 |
commit | 33daa3a50a57e3de862a1f030c6b064a95a07217 (patch) | |
tree | f8f37020bd4173dae2c867640bd53fc7355f8079 /regen | |
parent | c80e42f3bedc86f49112644858de416b7d06c09a (diff) | |
download | perl-33daa3a50a57e3de862a1f030c6b064a95a07217.tar.gz |
Don't refer to U+XXXX when mean native
These messages say the output number is Unicode, but it is really
native, so change to saying is 0xXXXX.
Diffstat (limited to 'regen')
-rw-r--r-- | regen/regcharclass_multi_char_folds.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/regen/regcharclass_multi_char_folds.pl b/regen/regcharclass_multi_char_folds.pl index f04be85c58..7a4c2a6d96 100644 --- a/regen/regcharclass_multi_char_folds.pl +++ b/regen/regcharclass_multi_char_folds.pl @@ -71,7 +71,7 @@ sub multi_char_folds ($) { # for ascii chars in EXACTFA (and EXACTFL) nodes. But I (khw) doubt # that there will ever be such a fold created by Unicode, so the code # isn't there to occupy space and time; instead there is this check. - die sprintf("regcomp.c can't cope with a latin1 multi-char fold (found in the fold of U+%X", $cp_ref->[$i]) if grep { $_ < 256 && chr($_) !~ /[[:ascii:]]/ } @{$folds_ref->[$i]}; + die sprintf("regcomp.c can't cope with a latin1 multi-char fold (found in the fold of 0x%X", $cp_ref->[$i]) if grep { $_ < 256 && chr($_) !~ /[[:ascii:]]/ } @{$folds_ref->[$i]}; # Create a line that looks like "\x{foo}\x{bar}\x{baz}" of the code # points that make up the fold. |