]> git.lyx.org Git - lyx.git/blobdiff - src/OutputParams.h
Forgotten tex2lyx change in dbe0096c126f9
[lyx.git] / src / OutputParams.h
index 87d8fcd122abebc74581f017b72ac615e37b6199..e5e9ad0813d0b631b871ba18b72df4999564c67f 100644 (file)
@@ -113,7 +113,7 @@ public:
 
        /** Document language babel name
         */
-       mutable std::string document_language;
+       std::string document_language;
 
        /** The master language. Non-null only for child documents.
            Note that this is not the language of the top level master, but
@@ -163,11 +163,11 @@ public:
 
        /** Customized bibtex_command
        */
-       mutable std::string bibtex_command;
+       std::string bibtex_command;
 
        /** Customized index_command
        */
-       mutable std::string index_command;
+       std::string index_command;
 
        /** Line length to use with plaintext or LaTeX export.
        */
@@ -254,6 +254,9 @@ public:
        /// Should we output verbatim or escape LaTeX's special chars?
        bool pass_thru;
 
+       /// Should we output verbatim specific chars?
+       docstring pass_thru_chars;
+
        /// Should we output captions?
        bool html_disable_captions;