commit f42379a7d6e127b94510e243197c05473fd0a30b
Author: Guillaume Munch <g...@lyx.org>
Date:   Tue Sep 27 03:37:02 2016 +0200

    Fix probable omission
    
    Upon close inspection I do not think that this twist was necessary.
---
 src/Paragraph.cpp |    4 +---
 1 files changed, 1 insertions(+), 3 deletions(-)

diff --git a/src/Paragraph.cpp b/src/Paragraph.cpp
index ce84dad..b98d06b 100644
--- a/src/Paragraph.cpp
+++ b/src/Paragraph.cpp
@@ -1404,9 +1404,7 @@ void Paragraph::Private::validate(LaTeXFeatures & 
features) const
                owner_->latex(bp, f, os, features.runparams(), 0, -1, true);
                if (os.length() > length) {
                        if (is_command) {
-                               // FIXME: why does it has to be os.os() 
(equivalent to ods
-                               // before)?
-                               os.os() << '}';
+                               os << '}';
                                if (!layout_->postcommandargs().empty()) {
                                        OutputParams rp = features.runparams();
                                        rp.local_font = 
&owner_->getFirstFontSettings(bp);

Reply via email to