summaryrefslogtreecommitdiffstats
path: root/out.h
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2017-06-27 18:25:02 +0000
committerIngo Schwarze <schwarze@openbsd.org>2017-06-27 18:25:02 +0000
commit4810b815f8d91b4ce1c346e211abc6f5abbad778 (patch)
treea85a3bc0b26547badb2fcc130ca8bbf76afb6d25 /out.h
parente9817d1eee252f2a60704c140932abd01803441b (diff)
downloadmandoc-4810b815f8d91b4ce1c346e211abc6f5abbad778.tar.gz
Implement spacing of columns as defined in the table layout;
this is for example used by lftp(1) and, ironically, misused by our very own tbl(7) manual...
Diffstat (limited to 'out.h')
-rw-r--r--out.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/out.h b/out.h
index a572cd61..14e7ddc7 100644
--- a/out.h
+++ b/out.h
@@ -33,6 +33,7 @@ enum roffscale {
struct roffcol {
size_t width; /* width of cell */
size_t decimal; /* decimal position in cell */
+ size_t spacing; /* spacing after the column */
int flags; /* layout flags, see tbl_cell */
};