]> git.lyx.org Git - lyx.git/blobdiff - src/tex2lyx/Context.cpp
tex2lyx/Preamble.cpp: support 2 math fonts
[lyx.git] / src / tex2lyx / Context.cpp
index 2db797d67d2c0a14c8d153b136ac5f6ad1e1b7c6..6de70f9c1f3b5d2c81c51ac0b4995d5fe88eace8 100644 (file)
@@ -96,7 +96,7 @@ Context::Context(bool need_layout_,
 Context::~Context()
 {
        if (!par_extra_stuff.empty())
-               cerr << "Bug: Ignoring par-level extra stuff '" 
+               cerr << "Bug: Ignoring par-level extra stuff '"
                     << par_extra_stuff << '\'' << endl;
 }
 
@@ -113,6 +113,9 @@ void Context::begin_layout(ostream & os, Layout const * const & l)
        }
        // FIXME: This is not enough for things like
        // \\Huge par1 \\par par2
+       // FIXME: If the document language is not english this outputs a
+       // superflous language change. Fortunately this is only file format
+       // bloat and does not change the TeX export of LyX.
        output_font_change(os, normalfont, font);
 }
 
@@ -150,7 +153,6 @@ void Context::check_layout(ostream & os)
                }
                need_layout = false;
                need_end_layout = true;
-               os << "\n";
                empty = false;
        }
 }