Re: [R-pkg-devel] error in windows R-devel builder, but not anywhere else

2024-04-13 Thread Duncan Murdoch
Looks like this recent change to R-devel has caught you: \code{is.atomic(NULL)} now returns \code{FALSE}, as \code{NULL} is not an atomic vector. Strict back-compatibility would replace \code{is.atomic(foo)} by \code{(is.null(foo) || is.atomic(foo))} but should happen

[R-pkg-devel] error in windows R-devel builder, but not anywhere else

2024-04-13 Thread Tony Wilkes
Hi everyone, I am updating my R package (tinycodet), and I have checked my R-package in all operating systems (Linux, Mac, Windows). All examples and tests run correctly for Linux, Mac, and Windows. Rcmd checks also finds no issues on GitHub (I use rather strict Rcmdcheck workflows on GitHub,