[Po4a-devel]Common.pm: Remove obsolete load_config export

Francois Gouget fgouget@codeweavers.com
Mon, 30 May 2005 17:21:58 +0200


This is a multi-part message in MIME format.
--------------080705050207020702080900
Content-Type: text/plain; charset=us-ascii; format=flowed
Content-Transfer-Encoding: 7bit


I noticed that Common.pm exports 'load_config' but I could find no place 
where this symbol is defined or used. So I assume this is an obsolete 
export which can be removed. I removed it and po4a still seems to be 
working so here is the patch.

Changelog:

  * lib/Locale/Po4a/Common.pm

    Francois Gouget <fgouget@codeweavers.com>
    Remove obsolete load_config export.


-- 
Francois Gouget
fgouget@codeweavers.com


--------------080705050207020702080900
Content-Type: text/plain;
 name="po4a-20050530-common.diff"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
 filename="po4a-20050530-common.diff"

Index: lib/Locale/Po4a/Common.pm
===================================================================
RCS file: /cvsroot/po4a/po4a/lib/Locale/Po4a/Common.pm,v
retrieving revision 1.8
diff -u -p -r1.8 Common.pm
--- lib/Locale/Po4a/Common.pm	30 May 2005 07:00:34 -0000	1.8
+++ lib/Locale/Po4a/Common.pm	30 May 2005 14:58:50 -0000
@@ -24,7 +24,7 @@ package Locale::Po4a::Common;
 require Exporter;
 use vars qw(@ISA @EXPORT);
 @ISA = qw(Exporter);
-@EXPORT = qw(wrap_msg wrap_mod wrap_ref_mod textdomain gettext dgettext load_config);
+@EXPORT = qw(wrap_msg wrap_mod wrap_ref_mod textdomain gettext dgettext);
 
 use 5.006;
 use strict;

--------------080705050207020702080900--