diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2018-12-13 02:06:07 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2018-12-13 02:06:07 +0000 |
commit | ae67a8ca5712135cc0c82b55de5e8d387d42b8ef (patch) | |
tree | a3718fa68884ce7736b6447028719710bcbe2109 /roff.h | |
parent | 417f9b830578cb78d80fbbf1a605502b9022cb2e (diff) | |
download | mandoc-ae67a8ca5712135cc0c82b55de5e8d387d42b8ef.tar.gz |
Cleanup, no functional change:
Move tbl(7)-specific parser internals out of libroff.h.
Move some tbl(7)-internal processing from roff.c to tbl.c.
Diffstat (limited to 'roff.h')
-rw-r--r-- | roff.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -502,7 +502,7 @@ struct roff_node { struct mdoc_arg *args; /* BLOCK/ELEM */ union mdoc_data *norm; /* Normalized arguments. */ char *string; /* TEXT */ - const struct tbl_span *span; /* TBL */ + struct tbl_span *span; /* TBL */ struct eqn_box *eqn; /* EQN */ int line; /* Input file line number. */ int pos; /* Input file column number. */ |