diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2017-06-27 18:25:02 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2017-06-27 18:25:02 +0000 |
commit | 4810b815f8d91b4ce1c346e211abc6f5abbad778 (patch) | |
tree | a85a3bc0b26547badb2fcc130ca8bbf76afb6d25 /out.h | |
parent | e9817d1eee252f2a60704c140932abd01803441b (diff) | |
download | mandoc-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.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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 */ }; |