Skip to content

Commit 84194b2

Browse files
committed
do not use \(x) fun style
1 parent 2654708 commit 84194b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/data.table.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1448,7 +1448,7 @@ replace_dot_alias = function(e) {
14481448
if (SD_only)
14491449
jvnames = jnames = sdvars
14501450
else
1451-
jnames = vapply_1c(jsub, \(x) `if`(is.name(x), as.character(x), NA_character_))[-1L]
1451+
jnames = vapply_1c(jsub, function(x) `if`(is.name(x), as.character(x), NA_character_))[-1L]
14521452
key_idx = chmatch(key, jnames)
14531453
missing_keys = which(is.na(key_idx))
14541454
if (length(missing_keys) && missing_keys[1L] == 1L) return(NULL)

0 commit comments

Comments
 (0)