Skip to content

Commit

Permalink
Bug 746417 - Nested list in C# XML comments closes outer list prematu…
Browse files Browse the repository at this point in the history
…rely
  • Loading branch information
Dimitri van Heesch committed Apr 26, 2015
1 parent d797738 commit 7a0522f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/docparser.cpp
Expand Up @@ -3664,7 +3664,8 @@ int DocHtmlTable::parseXml()
DBG(("DocHtmlTable::parseXml() end\n"));
DocNode *n=g_nodeStack.pop();
ASSERT(n==this);
return retval==RetVal_EndTable ? RetVal_OK : retval;
tagId=Mappers::htmlTagMapper->map(g_token->name);
return tagId==XML_LIST && g_token->endTag ? RetVal_OK : retval;
}

/** Helper class to compute the grid for an HTML style table */
Expand Down Expand Up @@ -6237,9 +6238,9 @@ int DocPara::handleHtmlEndTag(const QCString &tagName)
case XML_REMARKS:
case XML_PARA:
case XML_VALUE:
case XML_LIST:
case XML_EXAMPLE:
case XML_PARAM:
case XML_LIST:
case XML_TYPEPARAM:
case XML_RETURNS:
case XML_SEE:
Expand Down

0 comments on commit 7a0522f

Please sign in to comment.