aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tree.c
diff options
context:
space:
mode:
Diffstat (limited to 'tree.c')
-rw-r--r--tree.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/tree.c b/tree.c
index f08695d3..b901be1a 100644
--- a/tree.c
+++ b/tree.c
@@ -1,4 +1,4 @@
-/* $Id: tree.c,v 1.87 2020/03/13 15:32:29 schwarze Exp $ */
+/* $Id: tree.c,v 1.88 2020/04/07 22:56:02 schwarze Exp $ */
/*
* Copyright (c) 2013-2015, 2017-2020 Ingo Schwarze <schwarze@openbsd.org>
* Copyright (c) 2008, 2009, 2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
@@ -207,8 +207,11 @@ print_mdoc(const struct roff_node *n, int indent)
if (n->string != NULL)
printf("=%s", n->string);
}
- if (n->flags & NODE_HREF)
+ if (n->flags & NODE_HREF) {
printf(" HREF");
+ if (n->string != NULL && (n->flags & NODE_ID) == 0)
+ printf("=%s", n->string);
+ }
if (n->flags & NODE_BROKEN)
printf(" BROKEN");
if (n->flags & NODE_NOFILL)