Displaying 1 result from an estimated 1 matches for "parseevals4".
Did you mean:
parseeval
2007 Apr 07
2
Rf_PrintValue problem with methods::show
...inux-gnu, but the results are
same with R 2.4.1 (with suitable changes to the R_ParseVector call).
On powerpc Linux I get a segfault.
$ RPROG=R-devel
$ ${RPROG} --version | head -1
R version 2.6.0 Under development (unstable) (2007-04-06 r41080)
$ export LD_LIBRARY_PATH=`${RPROG} RHOME`/lib
$ cat parseEvalS4.c
#include <Rinternals.h>
#include <Rembedded.h>
#include <R_ext/Parse.h>
int main(int argc, char *argv[])
{
SEXP e, val;
int i, errorOccurred;
ParseStatus status;
char *cmds[] = { "show(5)", "show(cbind2)", "cbind2" };
argv[0]...