Re: [R-pkg-devel] Note on winbuilder-develop

2019-07-24 Thread Martin Maechler
> Roy Mendelssohn > on Tue, 23 Jul 2019 18:44:24 -0700 writes: > Thanks, I was looking at the raw files, not the .Rd files. > There are \keyword arguments in those file, will have to > search to see why they are getting generated. -Roy just to rub the obvious into everyb

Re: [R-pkg-devel] Note on winbuilder-develop

2019-07-24 Thread Duncan Murdoch
On 24/07/2019 3:08 a.m., Martin Maechler wrote: Roy Mendelssohn on Tue, 23 Jul 2019 18:44:24 -0700 writes: > Thanks, I was looking at the raw files, not the .Rd files. > There are \keyword arguments in those file, will have to > search to see why they are getting generated.

Re: [R-pkg-devel] Note on winbuilder-develop

2019-07-24 Thread Martin Maechler
> Duncan Murdoch > on Wed, 24 Jul 2019 06:12:35 -0400 writes: > On 24/07/2019 3:08 a.m., Martin Maechler wrote: >>> Roy Mendelssohn >>> on Tue, 23 Jul 2019 18:44:24 -0700 writes: >> >> > Thanks, I was looking at the raw files, not the .Rd files. >> > T

[R-pkg-devel] devtools::check() shows a warning at the beginning, but not at the end

2019-07-24 Thread Sigbert Klinke
Hi, when I called check() on my package I got a warning at the beginning Updating plot.matrix documentation Warnung: roxygen2 requires Encoding: UTF-8 Warnung: @examples [/home/sigbert/syncthing/projekte/R/plot.matrix/R/as.cor.R#12]: mismatched braces or quotes but at the end it says ── R C

Re: [R-pkg-devel] devtools::check() shows a warning at the beginning, but not at the end

2019-07-24 Thread Duncan Murdoch
On 24/07/2019 5:30 a.m., Sigbert Klinke wrote: Hi, when I called check() on my package I got a warning at the beginning Updating plot.matrix documentation Warnung: roxygen2 requires Encoding: UTF-8 Warnung: @examples [/home/sigbert/syncthing/projekte/R/plot.matrix/R/as.cor.R#12]: mismatched bra

Re: [R-pkg-devel] devtools::check() shows a warning at the beginning, but not at the end

2019-07-24 Thread Gábor Csárdi
Strictly speaking this is not a devtools bug, because the warning is not coming from `R CMD check`, but from `devtools::document()`, which rebuilds the documentation via roxygen2, before actually running `R CMD check`. Maybe `devtools::check()` should stop if `devtools::document()` throws a warnin

Re: [R-pkg-devel] Note on winbuilder-develop

2019-07-24 Thread Duncan Murdoch
On 24/07/2019 6:54 a.m., Martin Maechler wrote: Duncan Murdoch on Wed, 24 Jul 2019 06:12:35 -0400 writes: > On 24/07/2019 3:08 a.m., Martin Maechler wrote: >>> Roy Mendelssohn >>> on Tue, 23 Jul 2019 18:44:24 -0700 writes: >> >> > Thanks, I was looking at t

Re: [R-pkg-devel] devtools::check() shows a warning at the beginning, but not at the end

2019-07-24 Thread Duncan Murdoch
On 24/07/2019 8:00 a.m., Gábor Csárdi wrote: Strictly speaking this is not a devtools bug, because the warning is not coming from `R CMD check`, but from `devtools::document()`, which rebuilds the documentation via roxygen2, before actually running `R CMD check`. Maybe `devtools::check()` should

Re: [R-pkg-devel] devtools::check() shows a warning at the beginning, but not at the end

2019-07-24 Thread David Hugh-Jones
The warning is from devtools::document() rather than R CMD check itself. You should still fix it though! On Wed, 24 Jul 2019 at 12:05, Sigbert Klinke wrote: > Hi, > > when I called check() on my package I got a warning at the beginning > > Updating plot.matrix documentation > Warnung: roxygen2

Re: [R-pkg-devel] devtools::check() shows a warning at the beginning, but not at the end

2019-07-24 Thread David Hugh-Jones
Oops! Sorry for the spam. On Wed, 24 Jul 2019 at 14:02, David Hugh-Jones wrote: > The warning is from devtools::document() rather than R CMD check itself. > You should still fix it though! > > > On Wed, 24 Jul 2019 at 12:05, Sigbert Klinke > wrote: > >> Hi, >> >> when I called check() on my pa