From: Jonas Hvid Date: Sat, 3 Oct 2020 23:06:21 +0000 (+0200) Subject: Make S" work inside compiled words X-Git-Url: https://git.rrq.au/?a=commitdiff_plain;ds=sidebyside;h=afb6afb35d212499a691c0168ad3f1e479792e18;hp=afb6afb35d212499a691c0168ad3f1e479792e18;p=rrq%2Fjonasforth.git Make S" work inside compiled words The approach we're using here is kinda silly and cause by the fact that I wasn't/still aren't very familiar with Forth outside of trying to implement it myself. From doing a bit of reading, it sounds like S" is primarily intended to be used inside definitions -- not at runtime. So now we use the old, weird S" (that has a single static buffer and only works at runtime) to bootstrap the system, then replace it with a more sensible S" that only works at compile time. ---