My first patch, tried to follow the developer directions, please be nice!
# HG changeset patch
# User Silas Barta <
sba...@gmail.com>
# Date 1420055158 21600
# Wed Dec 31 13:45:58 2014 -0600
# Node ID 93a6abf755fc215d109dbba4df42301baf5c36d0
# Parent b1c4919cf84e1eb8fe30bc638217da3560e34d79
Escapes quotation mark; fixes #1252
diff -r b1c4919cf84e -r 93a6abf755fc common/make_jar.sh
--- a/common/make_jar.sh Fri Dec 12 20:25:54 2014 +1100
+++ b/common/make_jar.sh Wed Dec 31 13:45:58 2014 -0600
@@ -42,7 +42,7 @@
$_ = <>;
s{(?<!function )\bliteral\((?:function \(\) )?/\*(.*?)\*/\$?\)}{
my $s = $1;
- $s =~ s/[\\']/\\$&/g;
+ $s =~ s/[\\\']/\\$&/g;
$s =~ s/\n/\\n\\$&/g;
"/* Preprocessors FTW. */ '$s'";
}ges;