diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2018-07-24 13:25:43 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-24 13:25:43 (GMT) |
commit | 3085b036aef7166a298b5c14961591bf4caba35e (patch) | |
tree | 1214a7e43e8e2906187f036f5b46983a13e5bd0a /src/pre.l | |
parent | f22ccc291e19562d6f826fb890f7163341a8cc8e (diff) | |
parent | ad244059b3ffc896905f1000ad40b435d8bbe823 (diff) | |
download | Doxygen-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.l | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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); |