diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-03-19 14:22:03 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-03-19 14:22:03 -0400 |
| commit | adbb07fdc27af677923fb5453b845c7cd7b135a7 (patch) | |
| tree | 490caac013b97a49545487c956b8586b82ceeb9c /parse.c | |
| parent | 7b444cd8249c933fb24e5195d9c511156f8b22f4 (diff) | |
Module imports
Diffstat (limited to 'parse.c')
| -rw-r--r-- | parse.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1869,7 +1869,7 @@ PARSER(parse_use) { size_t path_len = strcspn(pos, " \t\r\n;"); if (path_len < 1) parser_err(ctx, start, pos, "There is no filename here to use"); - char *path = heap_strf("%.*s.nl", (int)path_len, pos); + char *path = heap_strf("%.*s.tm", (int)path_len, pos); pos += path_len; char *resolved_path = resolve_path(path, ctx->file->filename, getenv("USE_PATH")); if (!resolved_path) |
