Skip to content

Commit 7240e3c

Browse files
committed
Should not escape quotes for --macro statements
1 parent 6e32087 commit 7240e3c

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)