summaryrefslogtreecommitdiff
path: root/bcc/debug.c
diff options
context:
space:
mode:
authorRobert de Bath <rdebath@poboxes.com>2002-08-11 08:50:48 +0200
committerLubomir Rintel <lkundrak@v3.sk>2013-10-23 23:48:48 +0200
commit26ade8d624457b7164502ed9c190ca3f146bda0c (patch)
tree75a70b6a562bc595c971e170994a8e302a8c7b3b /bcc/debug.c
parent660429af0232d4afcb3e03fb0437053dd6e16286 (diff)
downloaddev86-26ade8d624457b7164502ed9c190ca3f146bda0c.tar.gz
Import Dev86src-0.16.8.tar.gzv0.16.8
Diffstat (limited to 'bcc/debug.c')
-rw-r--r--bcc/debug.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bcc/debug.c b/bcc/debug.c
index e437f78..2b1e12e 100644
--- a/bcc/debug.c
+++ b/bcc/debug.c
@@ -161,7 +161,7 @@ struct nodestruct *exp;
{
if (!debugon)
return;
- comment();
+ outstr("! Debug: ");
if (exp->tag < FIRSTOP && exp->tag > LASTOP)
outstr("unknown op");
else
@@ -186,7 +186,7 @@ struct nodestruct *exp;
PUBLIC void debugswap()
{
if (debugon)
- outnstr("* swapping");
+ outnstr("! Debug: expression subtree swapping");
}
PRIVATE void outindchars(byte, count)