2003-08-19 15:19:38 -04:00
|
|
|
#include "scheme.h"
|
|
|
|
|
|
|
|
static Object P_Debug (on) Object on; {
|
|
|
|
Check_Type (on, T_Boolean);
|
|
|
|
GC_Debug = EQ(on, True);
|
|
|
|
return Void;
|
|
|
|
}
|
|
|
|
|
2003-08-25 11:59:18 -04:00
|
|
|
void elk_init_lib_debug () {
|
2003-08-19 15:19:38 -04:00
|
|
|
Define_Primitive (P_Debug, "debug", 1, 1, EVAL);
|
|
|
|
}
|