From a47bd2d569e24b74bbb925b934bc835b4eea4de9 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Tue, 19 Mar 2024 23:29:32 -0400 Subject: Improvements to module imports --- ast.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ast.c') diff --git a/ast.c b/ast.c index 59ba8db2..dd227a58 100644 --- a/ast.c +++ b/ast.c @@ -141,7 +141,7 @@ CORD ast_to_cord(ast_t *ast) T(Index, "(indexed=%r, index=%r)", ast_to_cord(data.indexed), ast_to_cord(data.index)) T(FieldAccess, "(fielded=%r, field=%s)", ast_to_cord(data.fielded), data.field) T(DocTest, "(expr=%r, output=%r)", ast_to_cord(data.expr), Text__quoted(data.output, true)) - T(Use, "(%r)", Text__quoted(data.path, true)) + T(Use, "(%r)", Text__quoted(data.raw_path, true)) T(LinkerDirective, "(%r)", Text__quoted(data.directive, true)) T(InlineCCode, "(%r)", Text__quoted(data.code, true)) #undef T -- cgit v1.2.3