- added fullscreen/window switch to F11 (gnome-like)
[supertux.git] / src / lisp / parser.hpp
index b6d0209..5f0ad0f 100644 (file)
@@ -43,9 +43,11 @@ public:
   Lisp* parse(std::istream& stream);
 
 private:
+  void parse_error(const char* msg);
   Lisp* read();
-    
+
   Lexer* lexer;
+  std::string filename;
   TinyGetText::DictionaryManager* dictionary_manager;
   TinyGetText::Dictionary* dictionary;
   Lexer::TokenType token;
@@ -54,4 +56,3 @@ private:
 } // end of namespace lisp
 
 #endif
-