Displaying 1 result from an estimated 1 matches for "do_isdebug".
Did you mean:
  do_debug
  
2001 Oct 09
0
RE: [R] List of functions with debug() and trace()
...ot;         "listdebug" "test"      "x"         "y"
	> 
	> listdebug()
	[1] "f"
	> 
	> 
	
-Greg
---------- start of patch -----------------
diff -r R-1.3.1-orig//src/include/Internal.h R-1.3.1/src/include/Internal.h
208a209
> SEXP do_isdebug(SEXP, SEXP, SEXP, SEXP);
diff -r R-1.3.1-orig//src/main/debug.c R-1.3.1/src/main/debug.c
74a75,95
> 
> 
> SEXP do_isdebug(SEXP call, SEXP op, SEXP args, SEXP rho)
> {
>   SEXP ans;
> 
>     checkArity(op,args);
>     find_char_fun
> 
>     PROTECT(ans = allocVector(LGL...