[Rd] eval and Calling Frames

2020-05-31 Thread brodie gaslam via R-devel
I ran into an interesting issue with `evalq` (and also `eval(quote(...))`): f <- function() {    list( sys.parent(1), evalq(sys.parent(1)), evalq((function() sys.parent(2))()),  # add an anon fun layer evalq((function() sys.parent(1))())    )

Re: [Rd] r-project.org SSL certificate issues

2020-05-31 Thread Gábor Csárdi
Btw. it would be also possible to create a macOS R installer that embeds a static or dynamic libcurl with Secure Transport, instead of the Apple default LibreSSL. This might be too late for R 4.0.1, I don't know. Gabor On Sun, May 31, 2020 at 4:09 PM Gábor Csárdi wrote: > > On Sat, May 30, 2020

Re: [Rd] r-project.org SSL certificate issues

2020-05-31 Thread Gábor Csárdi
On Sat, May 30, 2020 at 11:32 PM Gábor Csárdi wrote: [...] > Btw. why does this affect openssl? That root cert was published in > 2010, surely openssl should know about it? Maybe libcurl / openssl > only uses the chain provided by the server? Without trying to use an > alternate chain? Yes, indee

Re: [Rd] order function called on a data.frame?

2020-05-31 Thread Jan Gorecki
So maybe for now just warning/error? Should be much smaller change then those proposed by William and Michael. Rui, Your example of order list does raise error, but if you remove second argument, it won't raise error anymore. On Mon, May 18, 2020 at 5:27 PM William Dunlap via R-devel wrote: > >