summaryrefslogtreecommitdiff
path: root/lib/utf8_heavy.pl
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2011-09-14 09:17:03 -0600
committerKarl Williamson <public@khwilliamson.com>2011-11-08 08:09:19 -0700
commitc4ab2516cf9aa36af38ecb8e534aa22b516c1dc1 (patch)
tree4cdd215390752f835c1505721706c4e5de64790a /lib/utf8_heavy.pl
parenteaebe4db78e60c95dc66ff4cc650c9dac591e788 (diff)
downloadperl-c4ab2516cf9aa36af38ecb8e534aa22b516c1dc1.tar.gz
Change internal sub name to begin with underscore
This is in the utf8 package, which is used in a number of places, so change the name to avoid potential conflicts
Diffstat (limited to 'lib/utf8_heavy.pl')
-rw-r--r--lib/utf8_heavy.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/utf8_heavy.pl b/lib/utf8_heavy.pl
index dc8211cb16..88cc299b02 100644
--- a/lib/utf8_heavy.pl
+++ b/lib/utf8_heavy.pl
@@ -10,7 +10,7 @@ my %Cache;
sub croak { require Carp; Carp::croak(@_) }
-sub loose_name ($) {
+sub _loose_name ($) {
# Given a lowercase property or property-value name, return its
# standardized version that is expected for look-up in the 'loose' hashes
# in Heavy.pl (hence, this depends on what mktables does). This squeezes
@@ -193,7 +193,7 @@ sub loose_name ($) {
# name is always loosely matched, and always can have an
# optional 'is' prefix (which isn't true in the single
# form).
- $property = loose_name($property) =~ s/^is//r;
+ $property = _loose_name($property) =~ s/^is//r;
# And convert to canonical form. Quit if not valid.
$property = $utf8::loose_property_name_of{$property};
@@ -385,7 +385,7 @@ sub loose_name ($) {
# out the applicable characters on the rhs and looking up
# again.
if (! defined $file) {
- $table = loose_name($table);
+ $table = _loose_name($table);
$property_and_table = "$prefix$table";
print STDERR __LINE__, ": $property_and_table\n" if DEBUG;
$file = $utf8::loose_to_file_of{$property_and_table};