]> git.lyx.org Git - lyx.git/blobdiff - src/lyxlex_pimpl.h
Fix small bug in reading \set_color in lyxrc
[lyx.git] / src / lyxlex_pimpl.h
index 177d94f6baf06517cbc15590ff3fcb9529677e7e..2991328f79c46f42f0ce15d03c1789ee28e52a0f 100644 (file)
@@ -36,7 +36,7 @@ struct LyXLex::Pimpl {
        
        Pimpl(keyword_item * tab, int num);
        
-       string const GetString() const;
+       string GetString() const;
        
        void printError(string const & message) const;
        
@@ -61,6 +61,8 @@ struct LyXLex::Pimpl {
        
        bool nextToken();
        
+       void pushToken(string const &);
+
        /// fb__ is only used to open files, the stream is accessed through is
        std::filebuf fb__;
        /// the stream that we use.
@@ -79,5 +81,7 @@ struct LyXLex::Pimpl {
        pushed_table * pushed;
        ///
        int lineno;
+       ///
+       string pushTok;
 };
 #endif