From 67a53d688ca9c89ddf138af0a4561601b3b778a8 Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Sun, 29 May 2011 21:14:51 -0600 Subject: [PATCH] mktables: Avoid possible user-defined property Properties with no elements are defined in terms of the complement of the property which matches all of Unicode: \p{Any}. But it currently is defined in terms of IsAny, which is user-overridable; Just drop the 'Is' --- lib/unicore/mktables | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/unicore/mktables b/lib/unicore/mktables index 25a74ec..e93e0a2 100644 --- a/lib/unicore/mktables +++ b/lib/unicore/mktables @@ -4967,7 +4967,7 @@ sub trace { return main::trace(@_); } # utf8.c, which can't really deal with empty tables, but it can # deal with a table that matches nothing, as the inverse of 'Any' # does. - push @OUT, "!utf8::IsAny\n"; + push @OUT, "!utf8::Any\n"; } else { my $range_size_1 = $range_size_1{$addr}; -- 2.7.4