Skip to content

Commit 048fabb

Browse files
committed
Merge branch 'master' into fread_quote_sep
2 parents a2c5779 + 1685a3b commit 048fabb

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.gitlab-ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -337,13 +337,15 @@ test-win-old:
337337
## R-release on MacOS
338338
test-mac-rel:
339339
<<: *test-mac
340+
image: macos-14-xcode-15
340341
variables:
341342
R_VERSION: "$R_REL_VERSION"
342343
R_BIN: "$R_REL_MAC_BIN"
343344

344345
## R-oldrel on MacOS
345346
test-mac-old:
346347
<<: *test-mac
348+
image: macos-14-xcode-15
347349
variables:
348350
R_VERSION: "$R_OLD_VERSION"
349351
R_BIN: "$R_OLD_MAC_BIN"

src/idatetime.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ SEXP convertDate(SEXP x, SEXP type)
145145
SEXP ans = PROTECT(allocVector(INTSXP, n));
146146
int *ansp = INTEGER(ans);
147147

148-
SEXP opt = GetOption(install("datatable.week"), R_NilValue);
148+
SEXP opt = GetOption1(install("datatable.week"));
149149
const char *mode = isString(opt) && length(opt) == 1 ? CHAR(STRING_ELT(opt, 0)) : "default";
150150

151151
bool use_sequential = !strcmp(mode, "sequential");

0 commit comments

Comments
 (0)