Hi guys! Thank you very much for using Data::Printer and for taking the time to file this issue and work on it - I really appreciate it. Also, apologies for the very long wait. I have failed to check RT after moving the issue tracker to Github.
The newest version of Data::Printer on github master (on CPAN as 0.99_X) does not appear to have this issue anymore:
$ unset HOME
$ perl -Ilib -Mstrict -Mwarnings -E 'use DDP; my $f = 123; p $f'
123
This version will soon be released as 1.0 stable on CPAN.
Thanks again!
garu
On Wed Jul 08 18:16:06 2015, fschlich wrote:
Show quoted text> perhaps use a patch like
>
>
> my $file = exists $args->{rc_file} ? $args->{rc_file}
> : exists $ENV{DATAPRINTERRC} ? $ENV{DATAPRINTERRC}
> - : File::Spec->catfile(File::HomeDir-
> >my_home,'.dataprinter');
> + : File::Spec->catfile(File::HomeDir-
> >my_home//'','.dataprinter');
>
> return unless -e $file;
>
>
> or something less ugly formatted...