Subject: | space format - spaces at the end of line |
It seems that spaces at the end of line cause that a reference to an
array is created instead of just a single hash item. E.g. having a
config file like this
dir /dir/1
^^^ spaces
with spaces at the end of line, will give
$CFG = {
'DIR' => [
'/dir/1'
]
};
instead of just
$CFG = {
'DIR' => '/dir/1'
};
Version 0.20 was ok, version 0.30 is not (Fedora 12, 64 bit, Perl
5.10.0, and also Centos 5.5, 32bit, Perl 5.8.8).