Re: [Rd] xrealloc namespace conflict

2017-05-12 Thread Patrick Perry
Thanks for the response. It looks like there is a dlopen flag that will fix the issue on Linux (RTLD_DEEPBIND); on Mac OS, symbols get resolved by searching in the library first, so the flag isn't needed. I don't know what the default behavior is on other platforms. See, e.g. https://software.i

Re: [Rd] R-3.3.3/R-3.4.0 change in sys.call(sys.parent())

2017-05-12 Thread Deepayan Sarkar
On Thu, May 11, 2017 at 8:03 PM, William Dunlap wrote: > Here is a case where the current scheme fails: > > > with(datasets::mtcars, xyplot(mpg~wt|gear)$call) > xyplot(substitute(expr), data, enclos = parent.frame()) Right, thanks. So I guess I can't avoid setting $call inside every method.