Displaying 1 result from an estimated 1 matches for "do_log_bulitin".
2020 May 22
0
round() and signif() do not check argument names when a single argument is given
...fround or frpec on the arguments depending on the
opcode.
This case can be guarded against by adding a check for using the wrong
symbol name at this point, which only covers the case of calling these
functions with a single argument. This is essentially the same guard used
in other functions like do_log_bulitin that is in the same file.
if(n == 1 ){
static SEXP R_x_Symbol = NULL;
R_x_Symbol = install("x");
/*This handles single-argument calling*/
/*Make sure we don't call it with a mis-named argument:*/
if(CAR(args)==R_MissingArg ||
TAG(args) != R_NilValue && TAG(args) != R_x_Sy...