Skip to content

Commit 1a4eacf

Browse files
committed
Fixed issue parsing raw strings
1 parent e8f196a commit 1a4eacf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/scanner.l

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5771,7 +5771,7 @@ NONLopt [^\n]*
57715771
*yyextra->pCopyRawString += yytext;
57725772
BEGIN(RawString);
57735773
}
5774-
<SkipCurly,SkipCurlyCpp>[^\n#"'@\\/{}<\$]+ {
5774+
<SkipCurly,SkipCurlyCpp>[^\n#"R'@\\/{}<\$]+ {
57755775
lineCount(yyscanner); // for yyextra->column updates
57765776
//addToBody(yytext);
57775777
}

0 commit comments

Comments
 (0)