Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add debugging statements to p5 eval.
  • Loading branch information
pmurias committed Oct 2, 2011
1 parent 935bc30 commit ee9b534
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/p5embed.c
Expand Up @@ -30,7 +30,10 @@ void p5embed_initialize()
}

SV* p5embed_eval(char* code) {
return eval_pv(code,TRUE);
printf("# evaling code...\n");
SV* ret = eval_pv(code,TRUE);
printf("# survived evaling code...\n");
return ret;
}

void p5embed_dispose()
Expand Down

0 comments on commit ee9b534

Please sign in to comment.