summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/lex.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lex.hpp b/src/lex.hpp
index 417c6e4..9ab6113 100644
--- a/src/lex.hpp
+++ b/src/lex.hpp
@@ -83,7 +83,7 @@ private:
public:
- lex_t(FILE *file0) : file(file0), needspace(false), start(0), end(0), tok_len(0) {
+ lex_t(FILE *file0) : file(file0), needspace(false), dumb_mode(false), start(0), end(0), tok_len(0) {
advance();
}