aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tree.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2020-04-08 11:56:03 +0000
committerIngo Schwarze <schwarze@openbsd.org>2020-04-08 11:56:03 +0000
commit637b922ab2b2aa18419a0abed18ae9d2fed4e50a (patch)
tree43a6a061839c1d2a8278fd43533f585b09e81304 /tree.c
parentf4c07cc80595b2276a99fd6e5c95c734187feaab (diff)
downloadmandoc-637b922ab2b2aa18419a0abed18ae9d2fed4e50a.tar.gz
mandoc-637b922ab2b2aa18419a0abed18ae9d2fed4e50a.tar.zst
mandoc-637b922ab2b2aa18419a0abed18ae9d2fed4e50a.zip
Use a separate node->tag attribute rather than abusing the node->string
attribute for the purpose. No functional change intended. The purpose is to make it possible to later attach tags to text nodes.
Diffstat (limited to 'tree.c')
-rw-r--r--tree.c88
1 files changed, 39 insertions, 49 deletions
diff --git a/tree.c b/tree.c
index b901be1a..fb9df9d7 100644
--- a/tree.c
+++ b/tree.c
@@ -1,4 +1,4 @@
-/* $Id: tree.c,v 1.88 2020/04/07 22:56:02 schwarze Exp $ */
+/* $Id: tree.c,v 1.89 2020/04/08 11:56:04 schwarze Exp $ */
/*
* Copyright (c) 2013-2015, 2017-2020 Ingo Schwarze <schwarze@openbsd.org>
* Copyright (c) 2008, 2009, 2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
@@ -36,6 +36,7 @@
#include "eqn.h"
#include "main.h"
+static void print_attr(const struct roff_node *);
static void print_box(const struct eqn_box *, int);
static void print_cellt(enum tbl_cellt);
static void print_man(const struct roff_node *, int);
@@ -191,38 +192,8 @@ print_mdoc(const struct roff_node *n, int indent)
if (argv[i].sz > 0)
printf(" ]");
}
-
- putchar(' ');
- if (n->flags & NODE_DELIMO)
- putchar('(');
- if (n->flags & NODE_LINE)
- putchar('*');
- printf("%d:%d", n->line, n->pos + 1);
- if (n->flags & NODE_DELIMC)
- putchar(')');
- if (n->flags & NODE_EOS)
- putchar('.');
- if (n->flags & NODE_ID) {
- printf(" ID");
- if (n->string != NULL)
- printf("=%s", n->string);
- }
- 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)
- printf(" NOFILL");
- if (n->flags & NODE_NOSRC)
- printf(" NOSRC");
- if (n->flags & NODE_NOPRT)
- printf(" NOPRT");
- putchar('\n');
+ print_attr(n);
}
-
if (n->eqn)
print_box(n->eqn->first, indent + 4);
if (n->child)
@@ -303,24 +274,9 @@ print_man(const struct roff_node *n, int indent)
} else {
for (i = 0; i < indent; i++)
putchar(' ');
- printf("%s (%s) ", p, t);
- if (n->flags & NODE_LINE)
- putchar('*');
- printf("%d:%d", n->line, n->pos + 1);
- if (n->flags & NODE_DELIMC)
- putchar(')');
- if (n->flags & NODE_EOS)
- putchar('.');
- if (n->flags & NODE_ID) {
- printf(" ID");
- if (n->string != NULL)
- printf("=%s", n->string);
- }
- if (n->flags & NODE_NOFILL)
- printf(" NOFILL");
- putchar('\n');
+ printf("%s (%s)", p, t);
+ print_attr(n);
}
-
if (n->eqn)
print_box(n->eqn->first, indent + 4);
if (n->child)
@@ -331,6 +287,40 @@ print_man(const struct roff_node *n, int indent)
}
static void
+print_attr(const struct roff_node *n)
+{
+ putchar(' ');
+ if (n->flags & NODE_DELIMO)
+ putchar('(');
+ if (n->flags & NODE_LINE)
+ putchar('*');
+ printf("%d:%d", n->line, n->pos + 1);
+ if (n->flags & NODE_DELIMC)
+ putchar(')');
+ if (n->flags & NODE_EOS)
+ putchar('.');
+ if (n->flags & NODE_ID) {
+ printf(" ID");
+ if (n->flags & NODE_HREF)
+ printf("=HREF");
+ } else if (n->flags & NODE_HREF)
+ printf(" HREF");
+ else if (n->tag != NULL)
+ printf(" STRAYTAG");
+ if (n->tag != NULL)
+ printf("=%s", n->tag);
+ if (n->flags & NODE_BROKEN)
+ printf(" BROKEN");
+ if (n->flags & NODE_NOFILL)
+ printf(" NOFILL");
+ if (n->flags & NODE_NOSRC)
+ printf(" NOSRC");
+ if (n->flags & NODE_NOPRT)
+ printf(" NOPRT");
+ putchar('\n');
+}
+
+static void
print_box(const struct eqn_box *ep, int indent)
{
int i;