Skip to content

Commit c5e872a

Browse files
committed
Get rid of Rf_findVarInFrame3, not allowed now
Use Rf_findVarInFrame instead.
1 parent bca99c0 commit c5e872a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/progress.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ SEXP clic_get_time(void) {
9797
}
9898

9999
SEXP clic__find_var(SEXP rho, SEXP symbol) {
100-
SEXP ret = Rf_findVarInFrame3(rho, symbol, TRUE);
100+
SEXP ret = Rf_findVarInFrame(rho, symbol);
101101
if (ret == R_UnboundValue) {
102102
error("Cannot find variable `%s`.", CHAR(PRINTNAME(symbol)));
103103

0 commit comments

Comments
 (0)