]> git.lyx.org Git - features.git/commitdiff
Style
authorJuergen Spitzmueller <spitz@lyx.org>
Mon, 17 Jul 2023 14:55:47 +0000 (16:55 +0200)
committerJuergen Spitzmueller <spitz@lyx.org>
Mon, 17 Jul 2023 14:55:47 +0000 (16:55 +0200)
src/insets/InsetSpace.cpp

index 6541a3024c1a1a9b1d8e71d681c9cf082e7fd399..a5b04648f506382f2d4899e038b76122eec81146 100644 (file)
@@ -588,8 +588,8 @@ void InsetSpace::latex(otexstream & os, OutputParams const & runparams) const
        case InsetSpaceParams::PROTECTED:
                if (runparams.find_effective())
                        os.put(0xa0);
-               else if (runparams.local_font &&
-                   runparams.local_font->language()->lang() == "polutonikogreek")
+               else if (runparams.local_font
+                        && runparams.local_font->language()->lang() == "polutonikogreek")
                        // in babel's polutonikogreek, ~ is active
                        os << (runparams.free_spacing ? " " : "\\nobreakspace{}");
                else