From 1c8789198373a52da9e80dc9b2b1ee2b67af61c4 Mon Sep 17 00:00:00 2001 From: Peter Mikkelsen Date: Fri, 16 Jul 2021 00:42:49 +0000 Subject: Make operators local to each module, and implement some more correct prettyprint code, used by write_term --- repl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'repl.c') diff --git a/repl.c b/repl.c index 8127184..5e619f7 100644 --- a/repl.c +++ b/repl.c @@ -36,7 +36,7 @@ FindMore: while(replbindings){ print(" %S = %S%s", replbindings->name, - prettyprint(replbindings->value, 0, 0, 0), + prettyprint(replbindings->value, 0, 0, 0, nil), replbindings->next ? ",\n " : ""); replbindings = replbindings->next; } -- cgit v1.2.3