From: Tim Vaughan Date: Sun, 26 Feb 2017 01:14:11 +0000 (+1300) Subject: Improved string parser, added license. X-Git-Url: https://thelambdalab.xyz/gitweb/index.cgi?a=commitdiff_plain;h=aa76b536aa3e1a90b31a64fd9147b2b16153ec8b;hp=aa76b536aa3e1a90b31a64fd9147b2b16153ec8b;p=scheme.forth.jl.git Improved string parser, added license. Previous string parser used recursion to make it easy to cons up the character list. Unfortunately this led to stack overflows for longer strings (such as the license agreement!). It is now replaced with a loop and calls to set-cdr!. ---