mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-23 02:14:50 +00:00
output_latex.cpp: fix regression, reported here: http://www.mail-archive.com/lyx-devel@lists.lyx.org/msg145738.html
I tested it carefully but in case this makes problems, please revert this immediately. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@27205 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
c64d80ef24
commit
1a4e481111
@ -157,7 +157,8 @@ TeXEnvironment(Buffer const & buf,
|
||||
}
|
||||
|
||||
if (style.isEnvironment()) {
|
||||
os << "\\begin{" << from_ascii(style.latexname()) << '}';
|
||||
// \begin must start on a new line
|
||||
os << "\n\\begin{" << from_ascii(style.latexname()) << '}';
|
||||
if (style.optionalargs > 0) {
|
||||
int ret = latexOptArgInsets(*pit, os, runparams,
|
||||
style.optionalargs);
|
||||
|
Loading…
Reference in New Issue
Block a user