mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-20 22:29:16 +02:00
Fix to reference tok_end
This commit is contained in:
parent
941f5bd737
commit
61d242521b
1 changed files with 1 additions and 1 deletions
|
@ -5960,7 +5960,7 @@ void _read_character(void *data, port_type *p)
|
|||
c = p->mem_buf[p->buf_idx++];
|
||||
p->col_num++;
|
||||
|
||||
if (p->tok_buf && (isspace(c) || c == ')')) {
|
||||
if (p->tok_end && (isspace(c) || c == ')')) {
|
||||
p->buf_idx--;
|
||||
p->col_num--;
|
||||
_read_return_character(data, p);
|
||||
|
|
Loading…
Add table
Reference in a new issue