Skip to content

Commit

Permalink
Merge pull request #82 from MichaelChirico/patch-1
Browse files Browse the repository at this point in the history
Use 'FALSE' not 'F'
  • Loading branch information
kevinushey committed Jul 27, 2023
2 parents 6f437eb + 3fd51bc commit 7148a0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/match.R
Expand Up @@ -86,7 +86,7 @@ re_matches <- matches <- m <- function(data, pattern, global = FALSE, options =
}))

full <- data.frame(res, starts, ends, stringsAsFactors = FALSE, check.names = FALSE)[, indexes, drop = FALSE]
full_names <- unlist(Map(function(name) c(name, paste(sep=".", name, c("start", "end"))), nms, USE.NAMES=F))
full_names <- unlist(Map(function(name) c(name, paste(sep=".", name, c("start", "end"))), nms, USE.NAMES = FALSE))
colnames(full) <- full_names

full
Expand Down

0 comments on commit 7148a0c

Please sign in to comment.