Skip to content

Commit

Permalink
Parsing numbers, re issue #593
Browse files Browse the repository at this point in the history
  • Loading branch information
infradig committed Sep 17, 2024
1 parent a86125c commit aee48ff
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/parser.c
Original file line number Diff line number Diff line change
Expand Up @@ -3334,6 +3334,7 @@ unsigned tokenize(parser *p, bool args, bool consing)
&& (*p->srcptr != '}')
&& !iswalnum(*p->srcptr)
&& (*p->srcptr != '_')
&& ((*p->srcptr != ' ') || !p->is_op)
) {

//printf("*** here %s\n", p->srcptr);
Expand Down

0 comments on commit aee48ff

Please sign in to comment.