From 52f8b31f8a06a39b223780d2df304b06d0d43daa Mon Sep 17 00:00:00 2001 From: Ákos Kőrösi Date: Fri, 22 May 2026 10:17:50 +0200 Subject: fix some quoting bugs --- src/lexparse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lexparse.c') diff --git a/src/lexparse.c b/src/lexparse.c index a4105eb..eae5c16 100644 --- a/src/lexparse.c +++ b/src/lexparse.c @@ -115,7 +115,7 @@ static void collect_double_q_section(char* line, Word* result_buf, size_t* pos) push_to_String(&lit_buf, '$'); } } else { - push_to_String(&lit_buf, line[*pos]); + push_to_String(&lit_buf, line[(*pos)++]); } } if (line[(*pos)++] == '\0') exit(46); -- cgit v1.2.3