Commit 23f7c36f authored by Dimitri van Heesch's avatar Dimitri van Heesch

Merge branch 'master' of github.com:doxygen/doxygen

parents 56051878 84d1195b
...@@ -241,9 +241,12 @@ void replaceComment(int offset); ...@@ -241,9 +241,12 @@ 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); copyToOutput(yytext,(int)yyleng);
} }
<Scan>[\\,] { /* eat , so we have a nice separator in long initialization lines */
copyToOutput(yytext,(int)yyleng);
}
<Scan>"\"\"\""! { /* start of python long comment */ <Scan>"\"\"\""! { /* start of python long comment */
if (g_lang!=SrcLangExt_Python) if (g_lang!=SrcLangExt_Python)
{ {
......
...@@ -9143,7 +9143,7 @@ static void copyExtraFiles(const QCString& filesOption,const QCString &outputOpt ...@@ -9143,7 +9143,7 @@ static void copyExtraFiles(const QCString& filesOption,const QCString &outputOpt
QFileInfo fi(fileName); QFileInfo fi(fileName);
if (!fi.exists()) if (!fi.exists())
{ {
err("Extra file '%s' specified in" + filesOption + " does not exist!\n", fileName.data()); err("Extra file '%s' specified in " + filesOption + " does not exist!\n", fileName.data());
} }
else else
{ {
......
...@@ -3252,7 +3252,10 @@ OPERATOR "operator"{B}*({ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP}) ...@@ -3252,7 +3252,10 @@ OPERATOR "operator"{B}*({ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP})
*pCopyCurlyGString+=yytext; *pCopyCurlyGString+=yytext;
} }
} }
<GCopyCurly>[^"'{}\/\n]+ { <GCopyCurly>[^"'{}\/\n,]+ {
*pCopyCurlyGString+=yytext;
}
<GCopyCurly>[,]+ {
*pCopyCurlyGString+=yytext; *pCopyCurlyGString+=yytext;
} }
<GCopyCurly>"/" { *pCopyCurlyGString+=yytext; } <GCopyCurly>"/" { *pCopyCurlyGString+=yytext; }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment