Skip to content
Prev 12396 / 63461 Next

Windows startup menu display problem in 1.9.0 (PR#6783)

On Fri, 16 Apr 2004 18:50:18 +0200 (CEST), brian-j-smith@uiowa.edu
wrote :
This isn't a bug, it's behaving as documented.  At the time that
.Rprofile is being executed, only the base package has been attached.
If you want access to functions that aren't in base, you need to do
something like

require(utils)
winMenuAdd( .... )

or

utils::winMenuAdd( .... )

The reason for this is that you may want your Rprofile to change the
list of packages that are attached at the start of a session.  I don't
think this behaviour has changed since 1.8.1, but winMenuAdd has been
moved out of the base package, so now you notice it.

Duncan Murdoch