diff options
| author | Ben Harris <bjh21@bjh21.me.uk> | 2006-05-06 22:16:38 +0000 |
|---|---|---|
| committer | Ben Harris <bjh21@bjh21.me.uk> | 2006-05-06 22:16:38 +0000 |
| commit | 72fee02708b2c5f644cf50ca34fe3f7857a3fefb (patch) | |
| tree | 50fba7acefbfa4aa3bf5e75cd1c70a0f4681fe1e | |
| parent | 55dfacbd204d0ae050589931609a56a815c62696 (diff) | |
| download | halibut-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.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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); |