Version bump

This commit is contained in:
Hakase
2018-04-27 20:47:40 +09:00
parent 6aa2bc2941
commit a08448ab40
304 changed files with 7574 additions and 2162 deletions
+2 -2
View File
@@ -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