We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5734869 commit 7636fecCopy full SHA for 7636fec
inst/include/Rcpp/Environment.h
@@ -100,7 +100,7 @@ namespace Rcpp{
100
#if R_VERSION < R_Version(4,5,0)
101
SEXP res = Rf_findVarInFrame( env, nameSym ) ;
102
#else
103
- SEXP res = R_getVarEx(nameSym, env, TRUE, R_UnboundValue);
+ SEXP res = R_getVarEx(nameSym, env, FALSE, R_UnboundValue);
104
#endif
105
if( res == R_UnboundValue ) return R_NilValue ;
106
@@ -123,7 +123,7 @@ namespace Rcpp{
123
124
SEXP res = Rf_findVarInFrame( env, name ) ;
125
126
- SEXP res = R_getVarEx(name, env, TRUE, R_UnboundValue);
+ SEXP res = R_getVarEx(name, env, FALSE, R_UnboundValue);
127
128
129
0 commit comments