From e47d4dee7039b0e8c3205b323fc5bfd6923a1876 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Uwe=20St=C3=B6hr?= Date: Fri, 31 Oct 2008 01:26:11 +0000 Subject: [PATCH] output_latex.cpp: revert last commit as it is too risky so short before the release git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@27206 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/output_latex.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/output_latex.cpp b/src/output_latex.cpp index ce5be3911d..90af09a5dc 100644 --- a/src/output_latex.cpp +++ b/src/output_latex.cpp @@ -157,8 +157,7 @@ TeXEnvironment(Buffer const & buf, } if (style.isEnvironment()) { - // \begin must start on a new line - os << "\n\\begin{" << from_ascii(style.latexname()) << '}'; + os << "\\begin{" << from_ascii(style.latexname()) << '}'; if (style.optionalargs > 0) { int ret = latexOptArgInsets(*pit, os, runparams, style.optionalargs);