Hi, *stopifnot(FALSE, someOtherExpression)*
For the above code I expect stopifnot() to always say that 'FALSE is not TRUE' regardless of what someOtherExpression is(It may evaluate to TRUE or FALSE or throw an error). Is my expectation correct? Is that how stopifnot() is supposed to work? The present implementation of stopifnot() does not work like that. If someOtherExpression would throw an error, then stopifnot() throws that error instead of saying 'FALSE is not TRUE'. So, I modified the source code of stopifnot() and now it works as I expect it to. If that is how stopifnot() is supposed to work, then kindly let me know how I can contribute my solution -- vAsAnth The mind, once expanded to the dimensions of larger ideas, never returns to its original size. - Oliver Wendell Holmes [[alternative HTML version deleted]] ______________________________________________ R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.