Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Krüger <mkrueger@xamarin.com>2013-08-11 14:09:34 +0400
committerMike Krüger <mkrueger@xamarin.com>2013-08-11 14:09:34 +0400
commit0e72d0741982178bd283cdad84743c3263a60d6e (patch)
tree89ec3f6d916771ae7a992a09e31d2dbefdce4a60 /main/src/core/Mono.Texteditor
parentf87788e3fa73fd0fc3dcb54bb1685772069660f9 (diff)
[TextEditor] Fixed string escape chars.
Diffstat (limited to 'main/src/core/Mono.Texteditor')
-rw-r--r--main/src/core/Mono.Texteditor/SyntaxModes/CSharpSyntaxMode.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/src/core/Mono.Texteditor/SyntaxModes/CSharpSyntaxMode.xml b/main/src/core/Mono.Texteditor/SyntaxModes/CSharpSyntaxMode.xml
index 8308e59709..f05266495f 100644
--- a/main/src/core/Mono.Texteditor/SyntaxModes/CSharpSyntaxMode.xml
+++ b/main/src/core/Mono.Texteditor/SyntaxModes/CSharpSyntaxMode.xml
@@ -58,12 +58,12 @@
<End>"</End>
</Span>
- <Span color = "String" rule="String" stopateol = "true">
+ <Span color = "String" rule="String" stopateol = "true" escape='\"'>
<Begin>"</Begin>
<End>"</End>
</Span>
- <Span color = "String" rule="String" stopateol = "true">
+ <Span color = "String" rule="String" stopateol = "true" escape="\'">
<Begin>&apos;</Begin>
<End>&apos;</End>
</Span>