]> git.lyx.org Git - lyx.git/commitdiff
Remove redundant blank
authorJuergen Spitzmueller <spitz@lyx.org>
Thu, 15 Dec 2016 08:18:52 +0000 (09:18 +0100)
committerJuergen Spitzmueller <spitz@lyx.org>
Thu, 15 Dec 2016 08:18:52 +0000 (09:18 +0100)
src/insets/InsetQuotes.cpp

index c538b88878638004396eb0120765054d3ef3dc93..1d0d3b1dc480f83da7d5353b2d3cad7a49c4f3e9 100644 (file)
@@ -275,10 +275,7 @@ void InsetQuotes::latex(otexstream & os, OutputParams const & runparams) const
                if (side_ == LeftQuote)
                        qstr = "\\og";
                else
-                       // the preceding space is important here
-                       // FIXME: really? (doesn't make a difference
-                       //        with recent babel-french)
-                       qstr = " \\fg";
+                       qstr = "\\fg";
        } else if (fontenc_ == "T1"
                   && !runparams.local_font->language()->internalFontEncoding()
                   && !runparams.use_polyglossia) {
@@ -316,8 +313,7 @@ void InsetQuotes::latex(otexstream & os, OutputParams const & runparams) const
 
        os << from_ascii(qstr);
 
-       // FIXME Check if the space in " \\fg" is really needed (see above)
-       if (prefixIs(qstr, "\\") || prefixIs(qstr, " \\"))
+       if (prefixIs(qstr, "\\"))
                // properly terminate the command depending on the context
                os << termcmd;
 }