Skip to content

Commit

Permalink
This should solve my_alpha being unseen. #58
Browse files Browse the repository at this point in the history
  • Loading branch information
jtlandis committed Feb 27, 2024
1 parent 7ee2196 commit 13fee79
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion R/utils-calls.R
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@


zap_dots <- function(call, zap = character(), ...) {
dots <- enexprs(...)
# force dots to be evaluated...
dots <- enquos(...) |>
lapply(rlang::eval_tidy)
# remove dots and splice them in
call <- call_modify(call, ... = zap(), !!!dots)
if (length(zap) > 0) {
Expand Down

0 comments on commit 13fee79

Please sign in to comment.