diff options
Diffstat (limited to 'tokenize.c')
| -rw-r--r-- | tokenize.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -283,6 +283,8 @@ void tokenize_all(Lexer* l) { ch = '\t'; } else if (ch == 'v') { ch = '\v'; + } else if (ch == '0') { + ch = '\0'; } } char* buf = calloc(4, sizeof(char)); |
