diff options
author | Preston Pan <preston@nullring.xyz> | 2023-01-04 12:03:26 -0800 |
---|---|---|
committer | Preston Pan <preston@nullring.xyz> | 2023-01-04 12:03:26 -0800 |
commit | 4fc423446c5f093483a4f20094904fa8b4ff88ba (patch) | |
tree | 54d07d80c6de6c661d8fa6397ccbdb3b9d97cbad /src/lexer.c | |
parent | 2fe28946e426e241e87e8381d7a62e73b9278385 (diff) |
parsing mostly works
Diffstat (limited to 'src/lexer.c')
-rw-r--r-- | src/lexer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lexer.c b/src/lexer.c index 938c4eb..97e6638 100644 --- a/src/lexer.c +++ b/src/lexer.c @@ -49,7 +49,7 @@ void lexer_skip_comment(lexer_t *lexer) { static bool is_valid_id_char(char c) { if (c == '(' || c == ')' || isdigit(c) || c == '"' || c == '\'' || c == '#' || - c == '.') + c == '.' || isspace(c)) return false; return true; } |