summaryrefslogtreecommitdiffstats
path: root/tree.c
diff options
context:
space:
mode:
Diffstat (limited to 'tree.c')
-rw-r--r--tree.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/tree.c b/tree.c
index 61a8e19a..3348cb4e 100644
--- a/tree.c
+++ b/tree.c
@@ -168,6 +168,10 @@ print_mdoc(const struct roff_node *n, int indent)
putchar(')');
if (MDOC_EOS & n->flags)
putchar('.');
+ if (NODE_NOSRC & n->flags)
+ printf(" NOSRC");
+ if (NODE_NOPRT & n->flags)
+ printf(" NOPRT");
putchar('\n');
}