fix cr/lfs and remove trailing whitespaces...
[supertux.git] / src / lisp / lexer.hpp
index 8128b13..f541abd 100644 (file)
@@ -37,7 +37,7 @@ public:
     TOKEN_TRUE,
     TOKEN_FALSE
   };
-    
+
   Lexer(std::istream& stream);
   ~Lexer();
 
@@ -46,15 +46,15 @@ public:
   { return token_string; }
   int getLineNumber() const
   { return linenumber; }
-    
+
 private:
   enum {
     MAX_TOKEN_LENGTH = 16384,
     BUFFER_SIZE = 1024
   };
-    
+
   inline void nextChar();
-    
+
   std::istream& stream;
   bool eof;
   int linenumber;
@@ -68,4 +68,3 @@ private:
 } // end of namespace lisp
 
 #endif
-