From: Guillaume Munch Date: Tue, 27 Sep 2016 01:37:02 +0000 (+0200) Subject: Fix probable omission X-Git-Tag: 2.3.0alpha1~873 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=f42379a7d6e127b94510e243197c05473fd0a30b;p=features.git Fix probable omission Upon close inspection I do not think that this twist was necessary. --- diff --git a/src/Paragraph.cpp b/src/Paragraph.cpp index ce84dad177..b98d06b897 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);