From: ben Date: Sat, 6 May 2006 22:16:38 +0000 (+0000) Subject: Display the "breaks" flag when generating a debugging dump. X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/halibut/commitdiff_plain/14b072e2bd4a4bc29bc68fa7e528e0705b063300 Display the "breaks" flag when generating a debugging dump. git-svn-id: svn://svn.tartarus.org/sgt/halibut@6653 cda61777-01e9-0310-a592-d414129be87e --- 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);