Dieter Kaiser wrote:
> A question:
>
> Is it worth to change a big number of lines in the code only because to remove
> some lambda-bindings. I do not see any improvement of the algorithm. The bugs I
> am working on are still present.
>
>
If you mean changing ((lambda (foo) ...) init) to (let ((foo init))
...), then that's a difficult question. For me, I have decided more or
less to ignore such forms and leave them as is, unless I need to make
significant changes in that area.
I think there are better things for me to do than just changing a lambda
expression to a let without also fixing a bug therein.
Ray