Peter Dalgaard wrote: > > BTW, we have a deparser bug: > > > transform > function ("_data", ...) > UseMethod("transform") > <environment: namespace:base> > > > function ("_data", ...) > Error: unexpected string constant in "function ("_data"" > .... > > > f <- function (`_data`, ...) {} > > attr(f,"source")<-NULL > > f > function ("_data", ...) > { > } > > It should deparse with backticks, not the old-style quotes (did that > ever work?). >
isn't it the same issue as in this simple case: `FALSE` = 0 ls() # "FALSE", not `FALSE` vQ ______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.