Skip to content

Commit 6449ed8

Browse files
committed
Per CCed email from Vienna: use lsInteral3 instead of lsInternal
1 parent 34997ab commit 6449ed8

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2025-03-13 Dirk Eddelbuettel <[email protected]>
2+
3+
* inst/include/Rcpp/Environment.h: Switch from R_lsInternal to
4+
R_lsInternal3 as the former is now outlawed
5+
16
2025-03-10 Dirk Eddelbuettel <[email protected]>
27

38
* DESCRIPTION (Version, Date): Roll micro version and date

inst/include/Rcpp/Environment.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ namespace Rcpp{
8484
*/
8585
SEXP ls(bool all) const {
8686
SEXP env = Storage::get__() ;
87-
return R_lsInternal( env, all ? TRUE : FALSE ) ;
87+
return R_lsInternal3(env, all ? TRUE : FALSE, TRUE);
8888
return R_NilValue ;
8989
}
9090

0 commit comments

Comments
 (0)