search for: 199029bda73

Displaying 1 result from an estimated 1 matches for "199029bda73".

2019 Jul 02
1
eliminate a partial argument match warning in R CMD check
...dir("src", patt = "[.]f9[05]$") : partial argument match of 'patt' to 'pattern' It's not a big deal but it would be nice to silence it. Patch below. Thanks, Jenny diff --git a/src/library/tools/R/check.R b/src/library/tools/R/check.R index 21d192af485..199029bda73 100644 --- a/src/library/tools/R/check.R +++ b/src/library/tools/R/check.R @@ -2933,10 +2933,10 @@ add_dummies <- function(dir, Log) any <- msg <- character() for (m in makefiles) { lines <- readLines(m, warn = FALSE) - have_c &l...