From 6703e76ad87b2f467fce3618909fdac7862f9f33 Mon Sep 17 00:00:00 2001 From: Dov Murik Date: Tue, 15 Dec 2015 12:46:16 -0500 Subject: [PATCH] forth: don't print commas in hash-maps --- forth/printer.fs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forth/printer.fs b/forth/printer.fs index 85f88a0fb6..7030e58a60 100644 --- a/forth/printer.fs +++ b/forth/printer.fs @@ -58,7 +58,7 @@ MalMap list MalList/start @ { start } start @ pr-buf a-space start cell+ @ pr-buf count 2 / 1 ?do - s" , " str-append + a-space start i 2 * cells + @ pr-buf a-space start i 2 * 1+ cells + @ pr-buf loop