From 2656178466102ca7279f95992c941b6ce42fe923 Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Tue, 27 Dec 2011 10:46:54 -0700 Subject: [PATCH] mktables: Make protected method available This is needed in 6.1 for a special case. It still should be used only in limited circumstances so is still protected (meaning only that its name begins with an underscore). --- lib/unicore/mktables | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/unicore/mktables b/lib/unicore/mktables index fecb539..3e3b666 100644 --- a/lib/unicore/mktables +++ b/lib/unicore/mktables @@ -4606,7 +4606,8 @@ sub trace { return main::trace(@_); } my %format; # The format of the entries of the table. This is calculated from the # data in the table (or passed in the constructor). This is an enum e.g., - # $STRING_FORMAT + # $STRING_FORMAT. It is marked protected as it should not be generally + # used to override calculations. main::set_access('format', \%format, 'r', 'p_s'); sub new { @@ -7903,6 +7904,7 @@ sub trace { return main::trace(@_) if main::DEBUG && $to_trace } set_default_map set_file_path set_final_comment + _set_format set_range_size_1 set_status set_to_output_map -- 2.7.4