]> git.lyx.org Git - lyx.git/blobdiff - src/output_latex.cpp
Revert part of 21965 which was debugging code.
[lyx.git] / src / output_latex.cpp
index 085a6f1ccdf21cc077eaa855cac740d31781941b..47ae3f8be74a2dd9fcf3925bac50b581cbd7460e 100644 (file)
@@ -14,7 +14,7 @@
 
 #include "Buffer.h"
 #include "BufferParams.h"
-#include "debug.h"
+#include "support/debug.h"
 #include "Encoding.h"
 #include "InsetList.h"
 #include "Language.h"
@@ -117,7 +117,8 @@ TeXEnvironment(Buffer const & buf,
                                lyxrc.language_command_end,
                                "$$lang",
                                prev_par_language->babel()))
-                          << '\n';
+                          // the '%' is necessary to prevent unwanted whitespace
+                          << "%\n";
                        texrow.newline();
                }
 
@@ -128,7 +129,8 @@ TeXEnvironment(Buffer const & buf,
                                lyxrc.language_command_begin,
                                "$$lang",
                                par_language->babel()))
-                          << '\n';
+                          // the '%' is necessary to prevent unwanted whitespace
+                          << "%\n";
                        texrow.newline();
                }
        }
@@ -284,7 +286,7 @@ TeXOnePar(Buffer const & buf,
        Language const * const par_language = pit->getParLanguage(bparams);
        // The document's language
        Language const * const doc_language = bparams.language;
-       // The language that was in effect when the environemnt this paragraph is 
+       // The language that was in effect when the environment this paragraph is 
        // inside of was opened
        Language const * const outer_language = 
                (runparams.local_font != 0) ?
@@ -311,7 +313,8 @@ TeXOnePar(Buffer const & buf,
                        os << from_ascii(subst(lyxrc.language_command_end,
                                "$$lang",
                                prev_language->babel()))
-                          << '\n';
+                          // the '%' is necessary to prevent unwanted whitespace
+                          << "%\n";
                        texrow.newline();
                }
 
@@ -364,7 +367,8 @@ TeXOnePar(Buffer const & buf,
                                lyxrc.language_command_begin,
                                "$$lang",
                                par_language->babel()))
-                          << '\n';
+                          // the '%' is necessary to prevent unwanted whitespace
+                          << "%\n";
                        texrow.newline();
                }
        }
@@ -394,7 +398,8 @@ TeXOnePar(Buffer const & buf,
                        if (encoding->package() == Encoding::inputenc && enc_switch.first) {
                                runparams.encoding = encoding;
                                if (enc_switch.second > 0) {
-                                       os << '\n';
+                                       // the '%' is necessary to prevent unwanted whitespace
+                                       os << "%\n";
                                        texrow.newline();
                                }
                        }