mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 12:32:26 +00:00
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:
parent
e3ed0adb16
commit
a23f710d55
@ -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.
|
||||
|
@ -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]);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user