From 076f331ed656f4f78334d30f395f2f19e12af818 Mon Sep 17 00:00:00 2001 From: Kaz Wesley Date: Fri, 9 Feb 2018 18:18:19 -0800 Subject: [PATCH] Support printing #FALSE values. Add special-case until implementing general non-primtype print. Signed-off-by: Kaz Wesley --- src/print.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/print.c b/src/print.c index 02456bc..942ad0d 100644 --- a/src/print.c +++ b/src/print.c @@ -87,6 +87,10 @@ print_object (const object * o) case EVALTYPE_FIX64: printf ("%ld", o->fix64.val.n); break; + case EVALTYPE_FALSE: + // for now, handle non-primtype print as special case (cf. OBLIST) + printf ("#FALSE "); + // FALLTHROUGH case EVALTYPE_LIST: printf ("("); print_list_body (&o->list); -- 2.31.1