The R Project SVN R

Rev

Rev 68947 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 68947 Rev 83446
Line 87... Line 87...
87
    }
87
    }
88
}
88
}
89
 
89
 
90
/* Also does all.vars with functions=FALSE
90
/* Also does all.vars with functions=FALSE
91
   .Internal(all.names(expr, functions, max.names, unique)) */
91
   .Internal(all.names(expr, functions, max.names, unique)) */
92
SEXP attribute_hidden do_allnames(SEXP call, SEXP op, SEXP args, SEXP env)
92
attribute_hidden SEXP do_allnames(SEXP call, SEXP op, SEXP args, SEXP env)
93
{
93
{
94
    SEXP expr;
94
    SEXP expr;
95
    int i, savecount;
95
    int i, savecount;
96
    NameWalkData data = {NULL, 0, 0, 0, 0, 0};
96
    NameWalkData data = {NULL, 0, 0, 0, 0, 0};
97
 
97