Skip to content
Snippets Groups Projects
Commit de4dcbb0 authored by Mick Jordan's avatar Mick Jordan
Browse files

.Internal arg match workaround

parent 69b5bc39
No related branches found
No related tags found
No related merge requests found
......@@ -30,7 +30,8 @@ lazyLoadDBexec <- function(filebase, fun, filter)
## - not that this version is actually used to load base
##
glue <- function (..., sep = " ", collapse = NULL)
.Internal(paste(list(...), sep, collapse))
# argument hack as per standard pase
.Internal(paste(list(...), sep = sep, collapse = collapse))
readRDS <- function (file) {
halt <- function (message) .Internal(stop(TRUE, message))
gzfile <- function (description, open)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment