Re: [Rd] Possible with enableJIT function

2017-06-13 Thread luke-tierney
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/

[Rd] print for lists evaluates "AsIs"-elements of type "language"

2017-06-13 Thread Andreas Kersting
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

Re: [Rd] translateChar in NewName in bind.c

2017-06-13 Thread Tomas Kalibera
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