Re: [Rd] R CMD check warning about compiler warning flags

2017-12-22 Thread Marc Schwartz
Hi, See inline below. > On Dec 22, 2017, at 9:12 AM, Martin Maechler > wrote: > >> Duncan Murdoch >>on Thu, 21 Dec 2017 14:23:13 -0500 writes: > >> On 21/12/2017 1:02 PM, Winston Chang wrote: > On recent builds of R-devel, R CMD check gives a > WARNING when some compiler

[Rd] Typos in ?regex

2017-12-22 Thread Korpela Mikko (MML)
I found three little typos in the ?regex manual. Apologies for the lack of a diff, as the utility is not (yet) installed on this machine. 1. "There is a also" should probably be "There is also". 2. In the list of functions following "This section covers the regular expressions"..., "grep" appear

Re: [Rd] R CMD check warning about compiler warning flags

2017-12-22 Thread Martin Maechler
> Duncan Murdoch > on Thu, 21 Dec 2017 14:23:13 -0500 writes: > On 21/12/2017 1:02 PM, Winston Chang wrote: On recent builds of R-devel, R CMD check gives a WARNING when some compiler warning flags are detected, such as -Werror, because they are non-port

[Rd] Unexpected dimnames attribute returned by cbind/rbind

2017-12-22 Thread Hervé Pagès
Hi, > m5 <- cbind(integer(5), integer(5)) > m5 [,1] [,2] [1,]00 [2,]00 [3,]00 [4,]00 [5,]00 > dimnames(m5) NULL No dimnames, as expected. > m0 <- cbind(integer(0), integer(0)) > m0 [,1] [,2] > dimnames(m0) [[1]] N