Skip to content

Commit

Permalink
don't error in reseolve_vars
Browse files Browse the repository at this point in the history
  • Loading branch information
romainfrancois committed Nov 6, 2015
1 parent c6701c6 commit ab83787
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dplyr.cpp
Expand Up @@ -1439,7 +1439,7 @@ SEXP resolve_vars( List new_groups, CharacterVector names){
} else if( TYPEOF(s) == LANGSXP && CAR(s) == Rf_install("column") && Rf_length(s) == 2 ){
s = extract_column( CADR(s), env ) ;
} else {
stop("unsupported value in group_by") ;
continue ;
}
// check that s is indeed in the data

Expand Down

0 comments on commit ab83787

Please sign in to comment.