The branch, master, has been updated.

- Log -----------------------------------------------------------------

commit dc5d63ae242e902269d327630587f1e2aa52a6c8
Author: Jean-Marc Lasgouttes <lasgout...@lyx.org>
Date:   Thu Jan 24 00:16:42 2013 +0100

    Fix bug #8049: extra empty line at the end of verbatim environment

diff --git a/src/output_latex.cpp b/src/output_latex.cpp
index f2c99db..2af9831 100644
--- a/src/output_latex.cpp
+++ b/src/output_latex.cpp
@@ -585,7 +585,7 @@ void TeXOnePar(Buffer const & buf,
                        os << '\n';
                if (!style.parbreak_is_newline) {
                        os << '\n';
-               } else if (nextpar) {
+               } else if (nextpar && !style.isEnvironment()) {
                        Layout const nextstyle = text.inset().forcePlainLayout()
                                ? bparams.documentClass().plainLayout()
                                : nextpar->layout();

-----------------------------------------------------------------------

Summary of changes:
 src/output_latex.cpp |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
The LyX Source Repository

Reply via email to