summaryrefslogtreecommitdiffstats
path: root/libroff.h
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2013-05-31 21:37:17 +0000
committerIngo Schwarze <schwarze@openbsd.org>2013-05-31 21:37:17 +0000
commitf19a462f8c4f50fb9b2536a7f21f2530a2248ec5 (patch)
treea4b7c2a00a5157add44eee09afa27912bd7c18ee /libroff.h
parente57a2805d5b079c45fb7e9da2257e143248deef4 (diff)
downloadmandoc-f19a462f8c4f50fb9b2536a7f21f2530a2248ec5.tar.gz
The name "struct tbl" was badly misleading for two reasons:
1) This struct almost exclusively contains the table options. 2) Information about the table as a whole is actually in "struct tbl_node". Besides, "struct tbl" was almost impossible to search for. So rename it to "struct tbl_opts". No functional change.
Diffstat (limited to 'libroff.h')
-rw-r--r--libroff.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libroff.h b/libroff.h
index 8752b68c..aae33aad 100644
--- a/libroff.h
+++ b/libroff.h
@@ -31,7 +31,7 @@ struct tbl_node {
int pos; /* invocation column */
int line; /* invocation line */
enum tbl_part part;
- struct tbl opts;
+ struct tbl_opts opts;
struct tbl_row *first_row;
struct tbl_row *last_row;
struct tbl_span *first_span;