]> git.lyx.org Git - lyx.git/blobdiff - src/Converter.cpp
Fix # 8414: Use the noweb module instead of literate-* article layouts
[lyx.git] / src / Converter.cpp
index 7199fa5212f73017a95f843d51ef2812dda4160e..e96ed7b0968bd3c8948aefa66551421e40d5b966 100644 (file)
@@ -99,7 +99,7 @@ Converter::Converter(string const & f, string const & t,
                     string const & c, string const & l)
        : from(f), to(t), command(c), flags(l),
          From(0), To(0), latex(false), xml(false),
-         need_aux(false)
+         need_aux(false), nice(false)
 {}
 
 
@@ -125,6 +125,8 @@ void Converter::readFlags()
                        result_file = flag_value;
                else if (flag_name == "parselog")
                        parselog = flag_value;
+               else if (flag_name == "nice")
+                       nice = true;
        }
        if (!result_dir.empty() && result_file.empty())
                result_file = "index." + formats.extension(to);