aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile.PL1
-rw-r--r--lib/Config/Parser.pm2
-rw-r--r--lib/Config/Parser/Ini.pm2
3 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.PL b/Makefile.PL
index 8ff01ae..bc0ba75 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -18,2 +18,3 @@ WriteMakefile(NAME => 'Config::Parser',
'File::Temp' => '0.22',
+ 'Text::Locus' => '1.01'
},
diff --git a/lib/Config/Parser.pm b/lib/Config/Parser.pm
index c0a2179..93b23fc 100644
--- a/lib/Config/Parser.pm
+++ b/lib/Config/Parser.pm
@@ -106,3 +106,3 @@ sub loadsynt {
}
- $ret->{default} = $val if $val;
+ $ret->{default} = $val if defined($val);
($name, $ret);
diff --git a/lib/Config/Parser/Ini.pm b/lib/Config/Parser/Ini.pm
index b3a1ef9..3b39a16 100644
--- a/lib/Config/Parser/Ini.pm
+++ b/lib/Config/Parser/Ini.pm
@@ -55,3 +55,3 @@ sub _readconfig {
- my $locus = new Config::Tree::Locus($file, $line);
+ my $locus = new Text::Locus($file, $line);

Return to:

Send suggestions and report system problems to the System administrator.