File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -102,10 +102,11 @@ replace_dot_alias = function(e) {
102102 # technically OK to update (though this should be rare), and since it's low-cost
103103 # to do so here because we're about to error anyway.
104104 missing_obj_fmt = gsub(
105- " 'missing_datatable_variable____ '" ,
105+ " '____missing_datatable_variable____ '" ,
106106 " '(?<obj_name>[^']+)'" ,
107- # expresion() to avoid "no visible binding for global variable" note from R CMD check
108- conditionMessage(tryCatch(eval(expression(`____missing_datatable_variable____` )), error = identity ))
107+ # expression() to avoid "no visible binding for global variable" note from R CMD check
108+ conditionMessage(tryCatch(eval(expression(`____missing_datatable_variable____` )), error = identity )),
109+ fixed = TRUE
109110 )
110111 idx = regexpr(missing_obj_fmt , err $ message , perl = TRUE )
111112 if (idx > 0L ) {
You can’t perform that action at this time.
0 commit comments