tisp

tiny lisp
git clone git://edryd.org/tisp
Log | Files | Refs | LICENSE

commit 45a18399735a8ad8f862b08327ea7a4a55362ea0
parent ebfa58a46906e5ff4d5f520b376a26af18b5671c
Author: Ed van Bruggen <edvb@uw.edu>
Date:   Thu, 22 Mar 2018 23:57:42 -0700

Fix printing of pairs which do not end in nil

Diffstat:
tisp.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tisp.c b/tisp.c @@ -496,7 +496,7 @@ tisp_print(Val v) tisp_print(car(v)); v = cdr(v); } else { - puts(" . "); + printf(" . "); tisp_print(v); break; }