summaryrefslogtreecommitdiffstats
path: root/src/code.l
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-11-02 14:43:59 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2019-11-02 14:43:59 (GMT)
commit0a9027e84737abb3ed8afe21872903c06bc88f60 (patch)
tree7d2353d5219aa2e7e85c464d4302870ff06cf2e5 /src/code.l
parent91caee4e66ed1ab258ad3125f58198f3506a004e (diff)
parent5e8da21d56dc821f27e1c8cded754bbf2594181e (diff)
downloadDoxygen-0a9027e84737abb3ed8afe21872903c06bc88f60.zip
Doxygen-0a9027e84737abb3ed8afe21872903c06bc88f60.tar.gz
Doxygen-0a9027e84737abb3ed8afe21872903c06bc88f60.tar.bz2
Merge branch 'feature/bug_code_string' of https://github.com/albert-github/doxygen into albert-github-feature/bug_code_string
Diffstat (limited to 'src/code.l')
-rw-r--r--src/code.l6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/code.l b/src/code.l
index 4a9b0da..c596bce 100644
--- a/src/code.l
+++ b/src/code.l
@@ -2353,6 +2353,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;