# Your mailer is set to "none" (default on Windows),
# hence we cannot send the bug report directly from R.
# Please copy the bug report (after finishing it) to
# your favorite email program and send it to
#
# r-bugs@r-project.org
#
######################################################
x <- rnorm(10)
y <- 1:10
xyplot(y ~ x)
trace(lattice:::print.trellis, exit=recover)
[1] "print.trellis"
Warning message:
Assigning over the binding of symbol "print.trellis" in environment/package "lattice"
in: .assignOverBinding(what, newFun, whereF)
xyplot(y ~ x)
untrace(lattice:::print.trellis)
Error in untrace(lattice:::print.trellis) :
Argument what should be the name of a function
Something isn't right. I see three possibilities.
a. tracing something in a namespace is prohibited and I didn't get an error,
instead I got a warning.