mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-27 03:36:39 +00:00
* src/output_latex.C
(TeXOnePar): Remove dead code git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16736 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
6f8c2a51f5
commit
a8739b8b91
@ -243,7 +243,6 @@ TeXOnePar(Buffer const & buf,
|
||||
lyxerr[Debug::LATEX] << "TeXOnePar... " << &*pit << " '"
|
||||
<< everypar << "'" << endl;
|
||||
BufferParams const & bparams = buf.params();
|
||||
bool further_blank_line = false;
|
||||
LyXLayout_ptr style;
|
||||
|
||||
// In an inset with unlimited length (all in one row),
|
||||
@ -332,11 +331,6 @@ TeXOnePar(Buffer const & buf,
|
||||
os << '\n';
|
||||
texrow.newline();
|
||||
}
|
||||
|
||||
if (further_blank_line) {
|
||||
os << '\n';
|
||||
texrow.newline();
|
||||
}
|
||||
}
|
||||
|
||||
switch (style->latextype) {
|
||||
@ -429,13 +423,6 @@ TeXOnePar(Buffer const & buf,
|
||||
}
|
||||
|
||||
if (!pit->forceDefaultParagraphs()) {
|
||||
further_blank_line = false;
|
||||
|
||||
if (further_blank_line) {
|
||||
os << '\n';
|
||||
texrow.newline();
|
||||
}
|
||||
|
||||
if (!pit->params().spacing().isDefault()
|
||||
&& (boost::next(pit) == paragraphs.end()
|
||||
|| !boost::next(pit)->hasSameLayout(*pit)))
|
||||
|
Loading…
Reference in New Issue
Block a user