Loading src/commentcnv.l +7 −7 Original line number Diff line number Diff line Loading @@ -241,10 +241,10 @@ void replaceComment(int offset); %% <Scan>[^"'!\/\n\\#\\-\\,]* { /* eat anything that is not " / , or \n */ <Scan>[^"'!\/\n\\#-,]* { /* eat anything that is not " / , or \n */ copyToOutput(yytext,(int)yyleng); } <Scan>[\\,] { /* eat , so we have a nice separator in long initialization lines */ <Scan>[,] { /* eat , so we have a nice separator in long initialization lines */ copyToOutput(yytext,(int)yyleng); } <Scan>"\"\"\""! { /* start of python long comment */ Loading Loading
src/commentcnv.l +7 −7 Original line number Diff line number Diff line Loading @@ -241,10 +241,10 @@ void replaceComment(int offset); %% <Scan>[^"'!\/\n\\#\\-\\,]* { /* eat anything that is not " / , or \n */ <Scan>[^"'!\/\n\\#-,]* { /* eat anything that is not " / , or \n */ copyToOutput(yytext,(int)yyleng); } <Scan>[\\,] { /* eat , so we have a nice separator in long initialization lines */ <Scan>[,] { /* eat , so we have a nice separator in long initialization lines */ copyToOutput(yytext,(int)yyleng); } <Scan>"\"\"\""! { /* start of python long comment */ Loading