diff options
| author | 2025-10-21 08:31:25 +0200 | |
|---|---|---|
| committer | 2025-10-21 08:31:31 +0200 | |
| commit | 86d6b9842e04f79787622a410854407d197f8f3e (patch) | |
| tree | a4f530778b01f363584d0b623addc60c75df98da /c | |
| parent | 7d5361374ad0cbe64c6dbb8cce3fc8842ed6b066 (diff) | |
lex: handle all the whitespace characters
Diffstat (limited to 'c')
| -rw-r--r-- | c/lex.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -442,7 +442,7 @@ lex0(struct lexer *lx, struct token *tk) Begin: idx = lx->chridx; switch (c = next(lx)) { - case ' ': case '\r': case '\t': + case ' ': case '\t': case '\f': case '\v': case '\r': goto Begin; break; case '(': case ')': case ',': case ':': |