search for: orgcapabilities

Displaying 1 result from an estimated 1 matches for "orgcapabilities".

2005 Jun 20
2
capabilities() and non-catchable messages
...e using source() and since the standard error from the plugin is checked for messages, the host system interprets this as if something problematic has occured. WORKAROUND: The workaround that I use now is to redefine capabilities() temporarily (since I do not need "iconv" support): orgCapabilities <- base::capabilities; basePos <- which(search() == "package:base")); assign("capabilities", function(...) FALSE, pos=basePos); source(<my file>) basePos <- which(search() == "package:base")); assign("capabilities", orgCapabilities,...