Commented out some debug statements with ifdef DEBUG_kin.

git-svn-id: svn://10.0.0.236/trunk@7678 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
kin%netscape.com
1998-08-10 21:08:10 +00:00
parent b07c398579
commit 802f04f7c5

View File

@@ -916,14 +916,18 @@ xfeDoCommandAction(Widget w, XEvent *event,
if (handler)
{
#ifdef DEBUG_kin
printf("handler->doCommand(0x%.8x): %s\n", handler, cmd);
fflush(stdout);
#endif /* DEBUG_kin */
handler->doCommand(v, &info);
}
else
{
#ifdef DEBUG_kin
printf("v->doCommand(0x%.8x): %s\n", v, cmd);
fflush(stdout);
#endif /* DEBUG_kin */
v->doCommand(cmd, NULL, &info);
}
return;