diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2021-05-02 10:51:10 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-02 10:51:10 (GMT) |
commit | 67e646f2dc3dbbc9872edb68d19d72c14a6581ad (patch) | |
tree | ba4907c1941eea7705f1ae59924f5db75a7c54b2 /src | |
parent | 77c1e773565b2e464cc19d5e897ff7ba3bfb93fc (diff) | |
parent | aa00bcb575b4bdf85a784eeec109c6782de89924 (diff) | |
download | Doxygen-67e646f2dc3dbbc9872edb68d19d72c14a6581ad.zip Doxygen-67e646f2dc3dbbc9872edb68d19d72c14a6581ad.tar.gz Doxygen-67e646f2dc3dbbc9872edb68d19d72c14a6581ad.tar.bz2 |
Merge pull request #8422 from albert-github/feature/bug_preproc
Problem with non escaped double quote in preprocessor
Diffstat (limited to 'src')
-rw-r--r-- | src/pre.l | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -622,6 +622,9 @@ WSopt [ \t\r]* <CopyLine,LexCopyLine>"\\"\r?/\n { // strip line continuation characters if (getLanguageFromFileName(yyextra->yyFileName)==SrcLangExt_Fortran) outputChar(yyscanner,*yytext); } +<CopyLine,LexCopyLine>\\. { + outputArray(yyscanner,yytext,(int)yyleng); + } <CopyLine,LexCopyLine>. { outputChar(yyscanner,*yytext); } |