diff options
author | Karl Williamson <khw@cpan.org> | 2018-04-25 13:27:34 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2018-06-25 07:33:27 -0600 |
commit | 25c180b8be73d8bfc857b4d0db9c82c968b82ba2 (patch) | |
tree | bda398187a3bc34162ec6a314145a480c0280053 /lib/unicore | |
parent | 32ea73a1fb86701a30aeea7df91aa2d38d6344c9 (diff) | |
download | perl-25c180b8be73d8bfc857b4d0db9c82c968b82ba2.tar.gz |
qr/\p{...}/: Rmv redundant text from warning msg detail
This text is emitted when compiling a pattern using a deprecated
property. The text is added detail to the main text of the message
(which isn't changing), and is redundant because it just says it's
deprecated, and the main message already says that.
Diffstat (limited to 'lib/unicore')
-rw-r--r-- | lib/unicore/mktables | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/unicore/mktables b/lib/unicore/mktables index 8d535152d8..e531b44066 100644 --- a/lib/unicore/mktables +++ b/lib/unicore/mktables @@ -937,9 +937,9 @@ my %why_obsolete; # Documentation only my $why_no_expand = "Deprecated by Unicode. These are characters that expand to more than one character in the specified normalization form, but whether they actually take up more bytes or not depends on the encoding being used. For example, a UTF-8 encoded character may expand to a different number of bytes than a UTF-32 encoded character."; %why_deprecated = ( - 'Grapheme_Link' => 'Deprecated by Unicode: Duplicates ccc=vr (Canonical_Combining_Class=Virama)', + 'Grapheme_Link' => 'Duplicates ccc=vr (Canonical_Combining_Class=Virama)', 'Jamo_Short_Name' => $contributory, - 'Line_Break=Surrogate' => 'Deprecated by Unicode because surrogates should never appear in well-formed text, and therefore shouldn\'t be the basis for line breaking', + 'Line_Break=Surrogate' => 'Surrogates should never appear in well-formed text, and therefore shouldn\'t be the basis for line breaking', 'Other_Alphabetic' => $contributory, 'Other_Default_Ignorable_Code_Point' => $contributory, 'Other_Grapheme_Extend' => $contributory, |