Commit 49cd47ea authored by Richard Levitte's avatar Richard Levitte
Browse files

util/dofile.pl: only quote stuff that actually needs quoting

parent cd15cb4d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -99,9 +99,9 @@ package main;
# This adds quotes (") around the given string, and escapes any $, @, \,
# " and ' by prepending a \ to them.
sub quotify1 {
    my $s = shift @_;
    my $s = my $orig = shift @_;
    $s =~ s/([\$\@\\"'])/\\$1/g;
    '"'.$s.'"';
    $s ne $orig || $s =~ /\s/ ? '"'.$s.'"' : $s;
}

# quotify_l LIST