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
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.