X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Flisp%2Flexer.hpp;h=f85c86e15f05c9d71abd6df11fee0f3ca4ef2e1f;hb=2ad3ecbc14b77d373c796ad04d6389489666cc01;hp=1cd062b0df79f6fc679d826c10b0abed5153cbbf;hpb=fea3446f05e1e7673607b835c269d3e8d1929ab3;p=supertux.git diff --git a/src/lisp/lexer.hpp b/src/lisp/lexer.hpp index 1cd062b0d..f85c86e15 100644 --- a/src/lisp/lexer.hpp +++ b/src/lisp/lexer.hpp @@ -53,13 +53,15 @@ private: }; inline void nextChar(); + inline void addChar(); std::istream& stream; bool eof; int linenumber; char buffer[BUFFER_SIZE+1]; char* bufend; - char* c; + char* bufpos; + int c; char token_string[MAX_TOKEN_LENGTH + 1]; int token_length; };