X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Flisp%2Flexer.hpp;h=f85c86e15f05c9d71abd6df11fee0f3ca4ef2e1f;hb=b029182b66e1f36e8eb7a1d8d23d26d475dec45f;hp=1cd062b0df79f6fc679d826c10b0abed5153cbbf;hpb=7b74666be6929322c6a603a6edd0131378f4c144;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; };