From 61e482f6f36aee6f72392a6188f2ec5c858b88fd Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Mon, 2 Sep 2024 18:47:39 -0400 Subject: Initial WIP first past --- ast.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ast.c') diff --git a/ast.c b/ast.c index 6f1d20c9..b380a04f 100644 --- a/ast.c +++ b/ast.c @@ -35,9 +35,9 @@ static CORD optional_tagged_type(const char *tag, type_ast_t *ast); CORD xml_escape(CORD text) { - text = Text$replace(text, "&", "&", I(-1)); - text = Text$replace(text, "<", "<", I(-1)); - text = Text$replace(text, ">", ">", I(-1)); + text = CORD_replace(text, "&", "&"); + text = CORD_replace(text, "<", "<"); + text = CORD_replace(text, ">", ">"); return text; } -- cgit v1.2.3