]> git.lyx.org Git - lyx.git/blobdiff - src/TextClass.cpp
Get rid of all-insets-toggle and explain how to replace it with inset-forall.
[lyx.git] / src / TextClass.cpp
index 6bc0bc0c8e65aded738618c509014955e8c4588b..6d13d7de0a26b0d92aae8e9d2ce9476f365521f2 100644 (file)
@@ -837,7 +837,10 @@ void TextClass::readClassOptions(Lexer & lexrc)
                        break;
                case CO_OTHER:
                        lexrc.next();
-                       options_ = lexrc.getString();
+                       if (options_.empty())
+                               options_ = lexrc.getString();
+                       else
+                               options_ += ',' + lexrc.getString();
                        break;
                case CO_HEADER:
                        lexrc.next();
@@ -1141,7 +1144,8 @@ bool TextClass::load(string const & path) const
                       << to_utf8(makeDisplayPath(layout_file.absFilename()))
                       << "'\n(Check `" << name_
                       << "')\nCheck your installation and "
-                       "try Options/Reconfigure..." << endl;
+                         "try Options/Reconfigure..." 
+                      << endl;
        }
 
        return loaded_;