Re: [Rd] Change in print.function between R 3.4.1 and R 3.4.0

2017-07-20 Thread Martin Maechler
> nicola farina > on Thu, 20 Jul 2017 16:51:54 +0200 writes: > Dear all, > I just installed R 3.4.1 and noticed a change in how user-defined functions > are printed. A small example: > string<-"f<-function(x){\n\tx^2\n}" > cat(string,file="tmp00a.R") > source

[Rd] Change in print.function between R 3.4.1 and R 3.4.0

2017-07-20 Thread nicola farina
Dear all, I just installed R 3.4.1 and noticed a change in how user-defined functions are printed. A small example: string<-"f<-function(x){\n\tx^2\n}" cat(string,file="tmp00a.R") source("tmp00a.R") f And this is what I see: #R 3.4.0 function(x){ x^2 } #R 3.4.1 function(x){ \tx^2 } Seems