You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
f<-function(...) enquo(..1)
f(foo)
#> Error in (function (arg) : object '..1' not found
When match.call() matches dots, it creates numbered dots like ..1 or ..2. Currently enquo() and enquos() don't handle these. This makes it difficult to use call-matching idioms which are sometimes useful (I think call-matching would be helpful to solve tidyverse/dplyr#5815).
This should capture
foo
:When
match.call()
matches dots, it creates numbered dots like..1
or..2
. Currentlyenquo()
andenquos()
don't handle these. This makes it difficult to use call-matching idioms which are sometimes useful (I think call-matching would be helpful to solve tidyverse/dplyr#5815).The text was updated successfully, but these errors were encountered: