diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-09-09 03:20:31 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-09-09 03:20:31 -0400 |
| commit | 0570acfa153fe7297257c0d39e5e0c4df3f8040a (patch) | |
| tree | f977b43ac9e1d036b8f66846fc9e3a827fa47cb7 | |
| parent | a306f945571c8027badd2ca673304991f628900c (diff) | |
Fix path escapes
| -rw-r--r-- | parse.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1316,6 +1316,7 @@ PARSER(parse_path) { ++pos; chunk_text = CORD_asprintf("%r%.*s%c", chunk_text, (size_t)(pos - chunk_start), chunk_start, *pos); ++pos; + chunk_start = pos; continue; } case '$': { |
