summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Harris <bjh21@bjh21.me.uk>2006-05-06 22:16:38 +0000
committerBen Harris <bjh21@bjh21.me.uk>2006-05-06 22:16:38 +0000
commit72fee02708b2c5f644cf50ca34fe3f7857a3fefb (patch)
tree50fba7acefbfa4aa3bf5e75cd1c70a0f4681fe1e
parent55dfacbd204d0ae050589931609a56a815c62696 (diff)
downloadhalibut-72fee02708b2c5f644cf50ca34fe3f7857a3fefb.zip
halibut-72fee02708b2c5f644cf50ca34fe3f7857a3fefb.tar.gz
halibut-72fee02708b2c5f644cf50ca34fe3f7857a3fefb.tar.bz2
halibut-72fee02708b2c5f644cf50ca34fe3f7857a3fefb.tar.xz
Display the "breaks" flag when generating a debugging dump.
[originally from svn r6653]
-rw-r--r--main.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/main.c b/main.c
index eb95fc3..e291d06 100644
--- a/main.c
+++ b/main.c
@@ -459,6 +459,8 @@ static void dbg_prtwordlist(int level, word *w) {
printf("\"");
} else
printf("(no text)");
+ if (w->breaks)
+ printf(" [breaks]");
if (w->alt) {
printf(" alt = {\n");
dbg_prtwordlist(level+1, w->alt);