Skip to content

Commit d0b746d

Browse files
committed
merge master
2 parents 949d326 + 23b1c9d commit d0b746d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

NEWS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ rowwiseDT(
173173
174174
20. Fixed a memory issue causing segfaults in `forder`, [#6797](https://github.com/Rdatatable/data.table/issues/6797). Thanks @dkutner for the report and @MichaelChirico for the fix.
175175
176-
10. `set()` now automatically pre-allocates new column slots if needed, similar to what `:=` already does, [#496](https://github.com/Rdatatable/data.table/issues/496) [#4100](https://github.com/Rdatatable/data.table/issues/4100). Thanks to Huashan Chen and @tyner for the report and Benjamin Schwendinger for the fix.
176+
20. `set()` now automatically pre-allocates new column slots if needed, similar to what `:=` already does, [#496](https://github.com/Rdatatable/data.table/issues/496) [#4100](https://github.com/Rdatatable/data.table/issues/4100). Thanks to Huashan Chen and @tyner for the report and Benjamin Schwendinger for the fix.
177177
178178
## NOTES
179179

R/data.table.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2761,7 +2761,7 @@ setcolorder = function(x, neworder=key(x), before=NULL, after=NULL, skip_absent=
27612761
invisible(x)
27622762
}
27632763

2764-
set = function(x, i = NULL, j, value) {
2764+
set = function(x, i=NULL, j, value) {
27652765
name = as.character(substitute(x))
27662766
old_add = address(x)
27672767
x = .Call(Cassign, x, i, j, NULL, value)

0 commit comments

Comments
 (0)