summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2018-12-20 20:03:47 (GMT)
committerGitHub <noreply@github.com>2018-12-20 20:03:47 (GMT)
commite8b9cfaaadf62c115cf253d417dd1bdee38e77db (patch)
tree5d2780fe3fa1295570d362b8a8eea82aa6cf31da /src
parent33a65ef755e0301401a15d012627d02c1facf2d9 (diff)
parent15541e75816673fdc51d90820d6620e98b8fcd4b (diff)
downloadDoxygen-e8b9cfaaadf62c115cf253d417dd1bdee38e77db.zip
Doxygen-e8b9cfaaadf62c115cf253d417dd1bdee38e77db.tar.gz
Doxygen-e8b9cfaaadf62c115cf253d417dd1bdee38e77db.tar.bz2
Merge pull request #6694 from albert-github/feature/issue_6692
issue #6692 XML TOC generation is not backwards-compatible with 1.8.14
Diffstat (limited to 'src')
-rw-r--r--src/commentscan.l4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/commentscan.l b/src/commentscan.l
index 3af682c..c5349cf 100644
--- a/src/commentscan.l
+++ b/src/commentscan.l
@@ -3005,7 +3005,9 @@ static bool handleToc(const QCString &, const QCStringList &optList)
}
if (current->localToc.nothingEnabled())
{
- current->localToc.enableHtml(5); // for backward compatibility
+ // for backward compatibility
+ current->localToc.enableHtml(5);
+ current->localToc.enableXml(5);
}
}
return FALSE;