Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/code/org.eclipse.fx.code.editor.ldef.langs.fx/src/org/eclipse/fx/code/editor/ldef/langs/fx/go/GoPartitionScanner.java')
-rw-r--r--bundles/code/org.eclipse.fx.code.editor.ldef.langs.fx/src/org/eclipse/fx/code/editor/ldef/langs/fx/go/GoPartitionScanner.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/code/org.eclipse.fx.code.editor.ldef.langs.fx/src/org/eclipse/fx/code/editor/ldef/langs/fx/go/GoPartitionScanner.java b/bundles/code/org.eclipse.fx.code.editor.ldef.langs.fx/src/org/eclipse/fx/code/editor/ldef/langs/fx/go/GoPartitionScanner.java
index c8f749d76..303269515 100644
--- a/bundles/code/org.eclipse.fx.code.editor.ldef.langs.fx/src/org/eclipse/fx/code/editor/ldef/langs/fx/go/GoPartitionScanner.java
+++ b/bundles/code/org.eclipse.fx.code.editor.ldef.langs.fx/src/org/eclipse/fx/code/editor/ldef/langs/fx/go/GoPartitionScanner.java
@@ -19,13 +19,13 @@ public class GoPartitionScanner extends org.eclipse.jface.text.rules.RuleBasedPa
"\""
, "\""
, new org.eclipse.jface.text.rules.Token("__go_string")
- , '\\'
+ , (char)0
, false);
pr[3] = new org.eclipse.jface.text.rules.SingleLineRule(
"'"
, "'"
, new org.eclipse.jface.text.rules.Token("__go_string")
- , '\\'
+ , (char)0
, false);
pr[4] = new org.eclipse.jface.text.rules.SingleLineRule(
"`"

Back to the top