Subject: | Parser chokes on double-quoted string |
When I run the following script:
use v5.10.0;
use strict;
use warnings;
use Config::Auto;
my $cfg = Config::Auto::parse("./my.conf");
on the following configuration file:
SOME_SETTING="/a/b/c "
the parser chokes on the space between 'c' and '"'
$ perl c-a-test.plx
File format unclear! space => 2,equal => 2 at c-a-test.plx line 7.
What's worse, the parser croaks instead of returning an error.