get rid of debugger message.

This commit is contained in:
Vitor Santos Costa 2012-06-22 14:32:06 +01:00
parent 1ec498d720
commit 637f5420aa
2 changed files with 0 additions and 9 deletions

View File

@ -416,7 +416,6 @@ YAP_parse_yap_arguments(int argc, char *argv[], YAP_init_args *iap)
#ifdef DEBUG
case 'P':
YAP_SetOutputMessage();
output_msg = TRUE;
break;
#endif
case 'L':

View File

@ -62,10 +62,6 @@
static void do_top_goal(YAP_Term Goal);
static void exec_top_level(int BootMode, YAP_init_args *iap);
#ifdef DEBUG
static int output_msg;
#endif
#ifdef lint
/* VARARGS1 */
#endif
@ -85,10 +81,6 @@ myputc (int ch)
static void
do_top_goal (YAP_Term Goal)
{
#ifdef DEBUG
if (output_msg)
fprintf(stderr,"Entering absmi\n");
#endif
YAP_RunGoalOnce(Goal);
}