summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-11-02 14:55:02 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2019-11-02 14:55:02 (GMT)
commit802083c01ce91fcc4ece226f3b6e8ccbdcacf882 (patch)
tree9055f717195272dffb58b0fd075ae25d94b40e03
parent91caee4e66ed1ab258ad3125f58198f3506a004e (diff)
parent3fe10a7eba7d55d2e542f3cd354d5a52701249ef (diff)
downloadDoxygen-802083c01ce91fcc4ece226f3b6e8ccbdcacf882.zip
Doxygen-802083c01ce91fcc4ece226f3b6e8ccbdcacf882.tar.gz
Doxygen-802083c01ce91fcc4ece226f3b6e8ccbdcacf882.tar.bz2
Merge branch 'albert-github-feature/bug_code_string'
-rw-r--r--src/code.l10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/code.l b/src/code.l
index 4a9b0da..60d6c7e 100644
--- a/src/code.l
+++ b/src/code.l
@@ -2362,6 +2362,16 @@ RAWEND ")"[^ \t\(\)\\]{0,16}\"
if (--g_sharpCount<=0)
BEGIN ( Bases );
}
+<SkipSharp>"\"" {
+ g_code->codify(yytext);
+ g_lastStringContext=YY_START;
+ BEGIN(SkipString);
+ }
+<SkipSharp>"\'" {
+ g_code->codify(yytext);
+ g_lastStringContext=YY_START;
+ BEGIN(SkipStringS);
+ }
<Bases>"(" {
g_code->codify(yytext);
g_sharpCount=1;