diff options
Diffstat (limited to 'tokenizer.c')
-rw-r--r-- | tokenizer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tokenizer.c b/tokenizer.c index cd82c81..e31c2eb 100644 --- a/tokenizer.c +++ b/tokenizer.c @@ -142,7 +142,7 @@ static inline int char_as_hex_digit(char c) { /* returns -1 if escape sequence is invalid */ static int tokr_esc_seq(Tokenizer *t) { - /* TODO: add more of these incl. \x41, \100 */ + /* TODO: octal (\032)? */ switch (*t->s) { case '\'': tokr_nextchar(t); |