[Rd] R CMD check does not report redundant '...' argument described in Rd File

2019-04-16 Thread Georgi Boshnakov
R's checks seem to be failing to notice a redundant '...' argument described in the documentation of a function. Consider a function: fun_3 <- function(arg1, arg2, arg3) { "I am fun_3" } If its documentation describes an argument, say 'dummy', R check reports something like: * checking Rd

Re: [Rd] Feature request: make file.exists interruptable

2019-04-16 Thread Prof Brian Ripley
The place for feature requests is bugs.r-project.org . On 15/04/2019 18:44, Christopher Hammill wrote: Hi R developers, On slow file systems with large lists of files, file.exists can take a long time to run. It would be nice if users could interrupt this function. I think it would be simple

[Rd] Feature request: make file.exists interruptable

2019-04-16 Thread Christopher Hammill
Hi R developers, On slow file systems with large lists of files, file.exists can take a long time to run. It would be nice if users could interrupt this function. I think it would be simple to add: https://svn.r-project.org/R/trunk/src/main/platform.c, at line 1373, add "R_CheckUserInterrupt()