Skip to content

Commit

Permalink
correct whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
haarg committed Mar 27, 2012
1 parent 913c21e commit 99aa697
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Win32/ShellQuote.pm
Expand Up @@ -7,7 +7,7 @@ our @EXPORT_OK = qw(quote_as_list quote_as_string quote_literal);
our %EXPORT_TAGS = (all => [@EXPORT_OK]);

sub quote_as_list {
my @args = @_;
my @args = @_;

return map { quote_literal($_) } @args;
}
Expand All @@ -26,7 +26,7 @@ sub quote_as_string {
}

sub cmd_escape {
my $string = shift;
my $string = shift;
$string =~ s/([()%!^"<>&|])/^$1/g;
return $string;
}
Expand Down

0 comments on commit 99aa697

Please sign in to comment.