summaryrefslogtreecommitdiffstats
path: root/src/pre.l
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2018-06-27 13:31:29 (GMT)
committeralbert-github <albert.tests@gmail.com>2018-06-27 13:31:29 (GMT)
commitad244059b3ffc896905f1000ad40b435d8bbe823 (patch)
treecf99fe438e4d359564b3624bed18bbe11fe9fc00 /src/pre.l
parent154e877cc2e8b10091d7e0068b6f6d5793cd29f3 (diff)
downloadDoxygen-ad244059b3ffc896905f1000ad40b435d8bbe823.zip
Doxygen-ad244059b3ffc896905f1000ad40b435d8bbe823.tar.gz
Doxygen-ad244059b3ffc896905f1000ad40b435d8bbe823.tar.bz2
Bug 565713 - Fortran: Does not recognize backslash at end of documentation line
Don't remove the end backslash in case of Fortran
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 37f7115..facd696 100644
--- a/src/pre.l
+++ b/src/pre.l
@@ -1934,6 +1934,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);