Apparently
Show quoted text> innocuous
is even more accurate than intended. It was never working, just silently did more than requested.
Config::Std never honored
Show quoted text> c:\tmp>perl -e "use Config::Std qw(read_config);"
but always imports both subs whatever you ask for.
(As long as you don't have anohter write_config, it's harmless?)
It only accepts a
use Config::Std {def_sep=>q(:), def_gap=>1 }
optional customization.
I don't like that. If you intend to have your config ini be read only, you should be able to import only the reader to SWYM. So I'll likely fix this to check ref or list. But need to support both at once, that'll get ugly.
Obvioulsy to patch package you have, you can lift the
no strict "refs";
from after the loop in 'sub import' to start and it will restore the prior silent but. (Or use 0.902, naturally)
Excellent but report, pointed directly to the problem and found something bigger.