Re: [Rd] Changes in error reporting in r-devel

2016-11-27 Thread luke-tierney
Its a compiled/interpreted difference. At the moment a small function like this is only compiled on the second call. That is in flux as we tune the JIT. But we should try to get rid of the difference. I actually prefer seeing the more specific call b() since you can get the larger context from tra

Re: [Rd] Changes in error reporting in r-devel

2016-11-27 Thread brodie gaslam via R-devel
rk Eddelbuettel To: Duncan Murdoch Cc: brodie gaslam ; "r-devel@r-project.org" Sent: Sunday, November 27, 2016 2:44 PM Subject: Re: [Rd] Changes in error reporting in r-devel On 27 November 2016 at 13:20, Duncan Murdoch wrote: | On 27/11/2016 11:34 AM, brodie gaslam via R-devel wrote:

Re: [Rd] Changes in error reporting in r-devel

2016-11-27 Thread Dirk Eddelbuettel
On 27 November 2016 at 13:20, Duncan Murdoch wrote: | On 27/11/2016 11:34 AM, brodie gaslam via R-devel wrote: | > Minor issue, but the following changed as of R3.3.2 from: | > | > > a <- function() b() | > > a() | > Error in a() : could not find function "b" | > | > To (at least in R

Re: [Rd] Changes in error reporting in r-devel

2016-11-27 Thread Duncan Murdoch
On 27/11/2016 11:34 AM, brodie gaslam via R-devel wrote: Minor issue, but the following changed as of R3.3.2 from: > a <- function() b() > a() Error in a() : could not find function "b" To (at least in R Under development (unstable) (2016-11-20 r71670)): Error in b() : could no

[Rd] Changes in error reporting in r-devel

2016-11-27 Thread brodie gaslam via R-devel
Minor issue, but the following changed as of R3.3.2 from: > a <- function() b() > a() Error in a() : could not find function "b" To (at least in R Under development (unstable) (2016-11-20 r71670)): Error in b() : could not find function "b" Notice the "Error in **b**() :" part.