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

Francois Gouget fgouget@codeweavers.com
Thu, 16 Jun 2005 18:29:52 +0200


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

Jordi Vilalta wrote:
[...]
> The idea was to move the config file loading routine to the Common 
> module, to share it with the other binaries, but it's still in the todo 
> list.

Ok. I think the load_config export should be removed then. It can be 
added back when (and if) the configuration loading code is moved to the 
Common,pm module. Until then it's just confusing and serves no purpose 
except being potential cruft for when this functionality is implemented 
as 'config_load' (or some other name).


Changelog:

  * lib/Locale/Po4a/Common.pm

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


-- 
Francois Gouget
fgouget@codeweavers.com


--------------030005070701080705010309
Content-Type: text/plain;
 name="po4a-20050616-loadconfig.diff"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
 filename="po4a-20050616-loadconfig.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	16 Jun 2005 16:18:11 -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;

--------------030005070701080705010309--