]> git.lyx.org Git - features.git/commitdiff
Add FIXME
authorJuergen Spitzmueller <spitz@lyx.org>
Mon, 12 Dec 2016 17:00:28 +0000 (18:00 +0100)
committerJuergen Spitzmueller <spitz@lyx.org>
Mon, 12 Dec 2016 17:00:28 +0000 (18:00 +0100)
src/insets/InsetQuotes.cpp

index ad4759d629e7aa97a3df8ae3b9527d880813ab1c..75486d97ddc84de7183cac16c2d0860754fff39a 100644 (file)
@@ -271,7 +271,10 @@ void InsetQuotes::latex(otexstream & os, OutputParams const & runparams) const
                if (side_ == LeftQuote)
                        qstr = "\\og";
                else
-                       qstr = " \\fg"; // the space is important here
+                       // the preceding space is important here
+                       // FIXME: really? (doesn't make a difference
+                       //        with recent babel-french)
+                       qstr = " \\fg";
        } else if (fontenc_ == "T1" && !runparams.use_polyglossia) {
                // Quotation marks for T1 font encoding
                // (using ligatures)
@@ -302,7 +305,8 @@ 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, " \\"))
                // properly terminate the command depending on the context
                os << termcmd;