egallesio / STklos

STklos Scheme
http://stklos.net
GNU General Public License v2.0
68 stars 17 forks source link

Fix non-computed-goto build #562

Closed jpellegrini closed 1 year ago

jpellegrini commented 1 year ago

The continue in the definition of NEXT interacts badly with the do{ ... }while(0) guard; instead of using continue, we put a label at the end of the loop and jump there.

(This is the goto version, not the if version :)

Fix #528