Fix output of LATEX_LIST_ENVIRONMENT and remove obsolete comment.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32101 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2009-11-19 22:13:44 +00:00
parent 45479198f4
commit 5815084ff0

View File

@ -477,8 +477,6 @@ ParagraphList::const_iterator makeParagraphs(Buffer const & buf,
if (par != pbegin) if (par != pbegin)
xs.cr(); xs.cr();
// FIXME Should we really allow anything other than 'p' here?
// If we are already in a paragraph, and this is the first one, then we // If we are already in a paragraph, and this is the first one, then we
// do not want to open the paragraph tag. // do not want to open the paragraph tag.
bool const opened = bool const opened =
@ -633,7 +631,7 @@ ParagraphList::const_iterator makeEnvironmentHtml(Buffer const & buf,
// if we're not at the end... // if we're not at the end...
if (par != pend if (par != pend
// and are doing items... // and are doing items...
&& style.latextype == LATEX_ITEM_ENVIRONMENT && !isNormalEnv(style)
// and if the depth has changed... // and if the depth has changed...
&& par->params().depth() != origdepth) { && par->params().depth() != origdepth) {
// then we'll save this layout for later, and close it when // then we'll save this layout for later, and close it when