Thanks. This should be resolved in R-devel(r72788) and R-patched
(r72789)
Best,
luke
On Mon, 12 Jun 2017, Berend Hasselman wrote:
In this email to the R-help list:
https://stat.ethz.ch/pipermail/r-help/2017-June/447474.html
and in this question on Stackoverflow:
https://stackoverflow.com/
Consider the following code snippets:
> list(quote(1 + 1), I(quote(1 + 1)))
[[1]]
1 + 1
[[2]]
[1] 2 # should also be 1 + 1!?
> str(list(quote(1 + 1), I(quote(1 + 1
List of 2
$ : language 1 + 1
$ : language + 1 1 # why is this line different from the one above?
..- attr(*, "class")= ch
Thanks, fixed in R-devel.
Best
Tomas
On 06/11/2017 02:30 PM, Suharto Anggono Suharto Anggono via R-devel wrote:
I see another thing in function 'NewName' in bind.c. In
else if (*CHAR(tag)) ,
'ans' is basically copied from 'tag'. Could the whole thing there be just the
following?
ans = tag;
It s