Re: [Chicken-hackers] Thrush operator

2012-02-19 Thread Moritz Heidkamp
Moritz Heidkamp mor...@twoticketsplease.de writes: find attached a suggested addition to miscmacros Attached a syntax-rules based implementation which is much easier to grok. I am leaning towards putting those into a separate egg now though. Index: miscmacros.scm

[Chicken-hackers] [PATCH] Speedup in walk-generic and generate less LET statements

2012-02-19 Thread Peter Bex
Hi all, Another week, another patch :) The first patch gets rid of the calls to SRFI-1's EVERY and MAP in favor of a hand-rolled loop. This is slightly more verbose, but by doing it this way we can avoid some recursive consing which MAP performs (if nodes are equal, no need to reverse the list)