summaryrefslogtreecommitdiff
path: root/exceptions.c
diff options
context:
space:
mode:
Diffstat (limited to 'exceptions.c')
-rw-r--r--exceptions.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/exceptions.c b/exceptions.c
index 8333b82..cd8bf81 100644
--- a/exceptions.c
+++ b/exceptions.c
@@ -51,6 +51,9 @@ void pushcontext(char *c)
exception(1, _("Too much error contexts during pushcontext()."));
}
contexts[clevel++] = Estrdup(c);
+#ifdef DEBUG
+ fprintf(stderr,"%s\n",c);
+#endif
}
void popcontext(void)