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 34997ab commit 6449ed8Copy full SHA for 6449ed8
ChangeLog
@@ -1,3 +1,8 @@
1
+2025-03-13 Dirk Eddelbuettel <edd@debian.org>
2
+
3
+ * inst/include/Rcpp/Environment.h: Switch from R_lsInternal to
4
+ R_lsInternal3 as the former is now outlawed
5
6
2025-03-10 Dirk Eddelbuettel <edd@debian.org>
7
8
* DESCRIPTION (Version, Date): Roll micro version and date
inst/include/Rcpp/Environment.h
@@ -84,7 +84,7 @@ namespace Rcpp{
84
*/
85
SEXP ls(bool all) const {
86
SEXP env = Storage::get__() ;
87
- return R_lsInternal( env, all ? TRUE : FALSE ) ;
+ return R_lsInternal3(env, all ? TRUE : FALSE, TRUE);
88
return R_NilValue ;
89
}
90
0 commit comments