Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2025-03-13 Dirk Eddelbuettel <[email protected]>

* inst/include/Rcpp/Environment.h: Switch from R_lsInternal to
R_lsInternal3 as the former is now outlawed

2025-03-10 Dirk Eddelbuettel <[email protected]>

* DESCRIPTION (Version, Date): Roll micro version and date
Expand Down
2 changes: 1 addition & 1 deletion inst/include/Rcpp/Environment.h
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ namespace Rcpp{
*/
SEXP ls(bool all) const {
SEXP env = Storage::get__() ;
return R_lsInternal( env, all ? TRUE : FALSE ) ;
return R_lsInternal3(env, all ? TRUE : FALSE, TRUE);
return R_NilValue ;
}

Expand Down