Skip to content
Prev 36244 / 63421 Next

problem with parse(text=quote(name))

This comes from bolting on srcrefs: as.character() was used for 
srcrefs, but *not* for coercion (as documented), and quote(myName) was 
coerced to NULL.

The simplest way out is to use text <- as.character(text) early on.
Maybe coerceVector should handle symbols, though.
On Fri, 12 Mar 2010, William Dunlap wrote: