summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/pre.l3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/pre.l b/src/pre.l
index 16d9a95..7b48ca7 100644
--- a/src/pre.l
+++ b/src/pre.l
@@ -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);
}