[Rd] premature use of startsWith in r75110
Hugh Parsonage
hugh@p@r@on@ge @ending from gm@il@com
Tue Aug 14 04:52:03 CEST 2018
In r75110 at line 1846 in src/library/tools/R/check.R the following
line was changed
- if(length(grep("^Found the defunct/removed function", out8)))
+ if(any(startsWith(out8, "Found the defunct/removed function")))
However, if `out8` is NULL at this point (which is plausible), the
original returns FALSE, but the second returns an error. Recommend
+ if(!is.null(out8) && any(startsWith(out8, "Found the defunct/removed
function")))
Best,
HP
More information about the R-devel
mailing list