Docbook - fix closing tags in the end of the document.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9089 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
José Matox 2004-10-13 22:15:32 +00:00
parent e3ed0adb16
commit a23f710d55
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2004-10-13 José Matos <jamatos@lyx.org>
* output_docbook.C (docbookParagraphs): fix closing tags in the end of the document.
2004-10-09 José Matos <jamatos@lyx.org>
* buffer.C: format up to 237.

View File

@ -252,8 +252,8 @@ void docbookParagraphs(Buffer const & buf,
// Close open tags
for (int d = depth; d >= 0; --d) {
if (!environment_stack[depth].empty()) {
sgml::closeEnvTags(os, false, environment_inner[depth],
item_tag, command_depth + depth);
sgml::closeEnvTags(os, false, environment_inner[d], item_tag, command_depth + d);
sgml::closeTag(os, d + command_depth, false, environment_stack[d]);
}
}