summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/code.l6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/code.l b/src/code.l
index 9428432..35efcd9 100644
--- a/src/code.l
+++ b/src/code.l
@@ -2357,6 +2357,12 @@ RAWEND ")"[^ \t\(\)\\]{0,16}\"
g_code->codify(yytext);
g_insideProtocolList=FALSE;
}
+<SkipSharp>"\""((\\0[Xx0-9]+)|(\\.)|(.))*"\"" {
+ g_code->codify(yytext);
+ }
+<SkipSharp>"'"((\\0[Xx0-9]+)|(\\.)|(.))"'" {
+ g_code->codify(yytext);
+ }
<SkipSharp>"<" {
g_code->codify(yytext);
++g_sharpCount;