diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-10-12 13:29:23 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-10-12 13:29:23 -0400 |
| commit | 55afc5a5fd93f4e45aeab7f08ed8faee86377d12 (patch) | |
| tree | 9387c550f0e6f5748c77376656c53abdf579e2c1 /ast.c | |
| parent | a92021f40b2489e0a6d915f02b6d6ad912fd3d77 (diff) | |
Further progress and bugfixes
Diffstat (limited to 'ast.c')
| -rw-r--r-- | ast.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -104,7 +104,7 @@ Text_t _optional_tagged(const char *tag, ast_t *ast) Text_t _optional_tagged_type(const char *tag, type_ast_t *ast) { - return ast ? Text$format("<%s>%k</%s>", tag, stack(type_ast_to_xml(ast)), tag) : Text(""); + return ast ? Text$format("<%s>%k</%s>", tag, type_ast_to_xml_ptr(ast), tag) : Text(""); } Text_t ast_to_xml(ast_t *ast) |
