Skip to content

Commit

Permalink
Fix partial argument matches
Browse files Browse the repository at this point in the history
  • Loading branch information
wch committed Nov 29, 2012
1 parent 03e1af8 commit ed4ccd8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion R/progress.r
Expand Up @@ -119,7 +119,7 @@ progress_text <- function(style = 3, ...) {
#' l_ply(1:100, identity, .progress = progress_tk(label=""))
#' }
progress_tk <- function(title = "plyr progress", label = "Working...", ...) {
stopifnot(require("tcltk", quiet=TRUE))
stopifnot(require("tcltk", quietly = TRUE))
n <- 0
tk <- NULL

Expand Down
2 changes: 1 addition & 1 deletion R/summarise.r
Expand Up @@ -32,7 +32,7 @@ summarise <- function(.data, ...) {
missing_names <- names(cols) == ""
}
if (any(missing_names)) {
names <- unname(unlist(lapply(match.call(expand = FALSE)$`...`, deparse)))
names <- unname(unlist(lapply(match.call(expand.dots = FALSE)$`...`, deparse)))
names(cols)[missing_names] <- names[missing_names]
}
.data <- as.list(.data)
Expand Down

0 comments on commit ed4ccd8

Please sign in to comment.