]> git.lyx.org Git - lyx.git/blobdiff - src/LaTeXFeatures.cpp
Revert "Objective-C compililation support with cmake and C++11"
[lyx.git] / src / LaTeXFeatures.cpp
index d291f668da239afd8cb7dc7f52bfbe5cb11b7bae..e20617f1c8a01ff3095b390236d125d41539ccc8 100644 (file)
@@ -428,6 +428,7 @@ void LaTeXFeatures::require(set<string> const & names)
 void LaTeXFeatures::useLayout(docstring const & layoutname)
 {
        // Some code to avoid loops in dependency definition
+       // FIXME THREAD
        static int level = 0;
        const int maxlevel = 30;
        if (level > maxlevel) {
@@ -740,7 +741,8 @@ char const * simplefeatures[] = {
        "multirow",
        "tfrupee",
        "shapepar",
-       "rsphrase"
+       "rsphrase",
+       "algorithm2e"
 };
 
 char const * bibliofeatures[] = {
@@ -856,8 +858,8 @@ string const LaTeXFeatures::getPackages() const
        // The rest of these packages are somewhat more complicated
        // than those above.
 
-       // The tipa package and its extenstions (tipx, tone) must not
-       // be loaded with non-TeX font, since fontspec includes the
+       // The tipa package and its extensions (tipx, tone) must not
+       // be loaded with non-TeX fonts, since fontspec includes the
        // respective macros
        if (mustProvide("tipa") && !params_.useNonTeXFonts)
                packages << "\\usepackage{tipa}\n";