summaryrefslogtreecommitdiff
path: root/fml
diff options
context:
space:
mode:
authorfukachan <fukachan>2001-03-20 10:21:57 +0000
committerfukachan <fukachan>2001-03-20 10:21:57 +0000
commit4d31872a8bae747bc275eccd4171c5069d56db8c (patch)
tree4524cf9677f0b75dcf8d439bbd64ea1e9fdd9d84 /fml
parent3fd28c4216b006106a3a091fa582216f0ee730a3 (diff)
downloadfml8-4d31872a8bae747bc275eccd4171c5069d56db8c.tar.gz
fml8-4d31872a8bae747bc275eccd4171c5069d56db8c.tar.bz2
fml8-4d31872a8bae747bc275eccd4171c5069d56db8c.zip
s/error_reset/error_clear/
change =item to =head2 C<>
Diffstat (limited to 'fml')
-rw-r--r--fml/lib/FML/Config.pm12
1 files changed, 6 insertions, 6 deletions
diff --git a/fml/lib/FML/Config.pm b/fml/lib/FML/Config.pm
index 8385b931..8d644af0 100644
--- a/fml/lib/FML/Config.pm
+++ b/fml/lib/FML/Config.pm
@@ -10,7 +10,7 @@ package FML::Config;
use strict;
use Carp;
use vars qw(%_fml_config %_default_fml_config);
-use ErrorMessages::Status qw(error_set error error_reset);
+use ErrorMessages::Status qw(error_set error error_clear);
=head1 NAME
@@ -75,21 +75,21 @@ memory which locates within FML::Parse name space.
=head1 METHODS
-=item Init( ref_to_curproc )
+=head2 C<Init( ref_to_curproc )>
special method only used in the initialization phase.
This method binds $curproc and the %_fml_config memory area.
-=item load_file( filename )
+=head2 C<load_file( filename )>
read the configuration file, split key and value and set them to
%_fml_config.
-=item get( key )
+=head2 C<get( key )>
-=item set( key, value )
+=head2 C<set( key, value )>
-=item dump_variables()
+=head2 C<dump_variables()>
show all {key => value} for debug.