Comment 3 for bug 426360

Revision history for this message
jbcolvin (jbcolvin) wrote :

on further investigation i think the

-ow <- options("warn")
+ow <- options()

patch is a bad idea because the "require(Revobase, quietly=TRUE)" adds 10 addition options to "options()" and Revobase may currently or in the future change pre-existing options, which would be overwritten with "options(ow)". so i think the better solution is...

-ow <- options("warn")
+ow <- options("warn","show.error.messages")