>>>> "Jan" == Jan Vroonhof
<vroonhof(a)math.ethz.ch> writes:
Jan> Martin Buchholz <martin(a)xemacs.org> writes:
> ChangeLog:
>
> 1999-12-17 Martin Buchholz <martin(a)xemacs.org>
>
> * fns.c (mapcar1): Fix ***THREE*** obscure crashes.
Jan> With a changelog matching in obscurity?
Jan> How about
Jan> 1999-12-17 Martin Buchholz <martin(a)xemacs.org>
Jan> * fns.c (mapcar1): Allow for user code modifying the list we
Jan> are looping over.
Jan> * fns.c (mapcar1): Allow for the strings STRING_DATA being
Jan> reallocated triggered by user code actions.
> + We avoid these problems by making a copy of the list to be
traversed.
> +
> + (We could also use EXTERNAL_LIST_LOOP and GCPRO the tail).
Jan> Why not do that? We can also do away with the caller calling Flength
Jan> when the results are not needed. Then we would only loop over the list
Jan> once and in addition the size of the list we can loop over is not
Jan> limited by the stack size limit.
It's not obvious to me which implementation is faster.
I actually have plans for optimizing map* in a bigger way. The basic
idea is to avoid repeating computations for each function invocation.
Martin