Commit d13908f6 authored by Dimitri van Heesch's avatar Dimitri van Heesch

Bug 739054 - Python xml not outputting info of functions inside __init__.py

parent 9b7e4ffb
......@@ -1268,6 +1268,19 @@ STARTDOCSYMS "##"
BEGIN(VariableEnd);
}
}
{TRIDOUBLEQUOTE} { // start of a comment block
g_specialBlock = FALSE;
current->program+=yytext;
initTriDoubleQuoteBlock();
BEGIN(TripleComment);
}
{TRISINGLEQUOTE} { // start of a comment block
g_specialBlock = FALSE;
current->program+=yytext;
initTriSingleQuoteBlock();
BEGIN(TripleComment);
}
"\"" {
g_stringContext=YY_START;
current->initializer+="\"";
......
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