[Lxr-commits] CVS: lxr showconfig,1.4,1.5
Brought to you by:
ajlittoz
From: Andre-Littoz <ajl...@us...> - 2014-03-09 15:20:52
|
Update of /cvsroot/lxr/lxr In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv10416 Modified Files: showconfig Log Message: showconfig: bad syntax for reference Line 86 in dumphash uses %h-> instead of $h-> where h is itself a reference. Index: showconfig =================================================================== RCS file: /cvsroot/lxr/lxr/showconfig,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- showconfig 8 Nov 2013 14:22:25 -0000 1.4 +++ showconfig 9 Mar 2014 15:20:48 -0000 1.5 @@ -83,7 +83,7 @@ # Compute left spaces in case we need to recurse $d =~ m/([^\n]*)$/s; my $indent = length($1); - my $v = %$h->{$k}; + my $v = $h->{$k}; if (ref($v) eq 'ARRAY') { $d .= '[ ' . join("\n".' 'x$indent.', ', @$v); if (1 < scalar(@$v)) { |