Skip to content

Commit 1bcd4a6

Browse files
committed
Merge pull request #900 from kevinresol/patch-1
Should not escape quotes for --macro statements
2 parents 90c0313 + 7240e3c commit 1bcd4a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

External/Plugins/HaXeContext/Completion/HaxeComplete.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ private void EscapeMacros(List<string> hxmlArgs)
145145
{
146146
Match m = reMacro.Match(arg);
147147
if (m.Success)
148-
hxmlArgs[i] = m.Groups[1].Value + " \"" + EscapeQuotes(m.Groups[2].Value.Trim()) + "\"";
148+
hxmlArgs[i] = m.Groups[1].Value + " \"" + m.Groups[2].Value.Trim() + "\"";
149149
}
150150
}
151151
}

0 commit comments

Comments
 (0)