Skip to content
Prev 18591 / 63424 Next

Infinite recursion in S3 methods crashes R on windows (related to PR#8203?)

Rich FitzJohn <rich.fitzjohn at gmail.com> writes:
This is presumably an issue of C stack size. We increased
options("expressions") in 2.2.0 from 500 to 5000, thinking that
"machines are bigger than that these days", but apparently not.

So for 2.2.0 patched we have

    o   options("expressions") has been reduced to 1000: the limit
        of 5000 introduced in 2.1.0 was liable to give crashes from C
        stack overflow.

and in R-devel

    o   options(expressions) reverts to the default of 5000 now
        stack checking is in place.