summaryrefslogtreecommitdiffstats
path: root/src/pre.l
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2018-07-24 13:25:43 (GMT)
committerGitHub <noreply@github.com>2018-07-24 13:25:43 (GMT)
commit3085b036aef7166a298b5c14961591bf4caba35e (patch)
tree1214a7e43e8e2906187f036f5b46983a13e5bd0a /src/pre.l
parentf22ccc291e19562d6f826fb890f7163341a8cc8e (diff)
parentad244059b3ffc896905f1000ad40b435d8bbe823 (diff)
downloadDoxygen-3085b036aef7166a298b5c14961591bf4caba35e.zip
Doxygen-3085b036aef7166a298b5c14961591bf4caba35e.tar.gz
Doxygen-3085b036aef7166a298b5c14961591bf4caba35e.tar.bz2
Merge pull request #778 from albert-github/feature/565713
Bug 565713 - Fortran: Does not recognize backslash at end of documentation line
Diffstat (limited to 'src/pre.l')
-rw-r--r--src/pre.l1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/pre.l b/src/pre.l
index 09a946d..b6ebbf8 100644
--- a/src/pre.l
+++ b/src/pre.l
@@ -1961,6 +1961,7 @@ CHARLIT (("'"\\[0-7]{1,3}"'")|("'"\\."'")|("'"[^'\\\n]{1,4}"'"))
}
}
<CopyLine>"\\"\r?/\n { // strip line continuation characters
+ if (getLanguageFromFileName(g_yyFileName)==SrcLangExt_Fortran) outputChar(*yytext);
}
<CopyLine>. {
outputChar(*yytext);