]> git.lyx.org Git - lyx.git/blobdiff - src/BufferParams.cpp
HTML for comments and colors.
[lyx.git] / src / BufferParams.cpp
index 5c933038b222c10cf4b5b87428b76cfeb26d6bd9..04d035481f9c4272b58447e17ac26777e970225d 100644 (file)
@@ -369,7 +369,7 @@ BufferParams::BufferParams()
        suppress_date = false;
        // white is equal to no background color
        backgroundcolor = lyx::rgbFromHexName("#ffffff");
-       compressed = false;
+       compressed = lyxrc.save_compressed;
        for (int iter = 0; iter < 4; ++iter) {
                user_defined_bullet(iter) = ITEMIZE_DEFAULTS[iter];
                temp_bullet(iter) = ITEMIZE_DEFAULTS[iter];
@@ -519,6 +519,8 @@ string BufferParams::readToken(Lexer & lex, string const & token,
                // We assume that a tex class exists for local or unknown layouts so this warning
                // will only be given for system layouts.
                if (!baseClass()->isTeXClassAvailable()) {
+                       docstring desc = 
+                               translateIfPossible(from_utf8(baseClass()->description()));
                        docstring const msg =
                                bformat(_("The document class requested\n"
                                                 "\t%1$s\n"
@@ -527,9 +529,9 @@ string BufferParams::readToken(Lexer & lex, string const & token,
                                                 "will not be able to produce output until the\n"
                                                 "following prerequisites are installed:\n"
                                                 "\t%2$s\n"
-                                                "See section 3.1.2.2 of the User's Guide"
-                                                "for more information."),
-                                                from_utf8(classname), from_utf8(baseClass()->prerequisites()));
+                                                "See section 3.1.2.2 of the User's Guide for\n"
+                                                "more information."), 
+                                                desc, from_utf8(baseClass()->prerequisites()));
                        frontend::Alert::warning(_("Document class not available"),
                                       msg);
                }