search for: r71670

Displaying 2 results from an estimated 2 matches for "r71670".

Did you mean: 371670
2016 Nov 27
3
Changes in error reporting in 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. The original error message seems more correct to me, although I can see how you can argue for either one. Best regards, B.
2016 Nov 27
1
Changes in error reporting in r-devel
...rodie 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 not find function "b" | > | > Notice the "Error in **b**() :" part. The original error message seems more correct to me, although I can see how you can argue for either one. | | I'm not seeing that in R-devel r71694. Could y...