summaryrefslogtreecommitdiffstats
path: root/mdoc.h
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2012-07-10 14:38:51 +0000
committerIngo Schwarze <schwarze@openbsd.org>2012-07-10 14:38:51 +0000
commit9f4a3d2ed291d81d20e716c9e6fa77fafbf154ce (patch)
treef333cb53a35a786ed37e5ebac3bcde5f74bda525 /mdoc.h
parent8ee1f84ff5585f3a387605ad0aa5b95beb7a4204 (diff)
downloadmandoc-9f4a3d2ed291d81d20e716c9e6fa77fafbf154ce.tar.gz
* implement -Tman .Bl -item -inset -diag -ohang -dash -hyphen -enum .It
* fix -Tman .Bl -bullet .It * adjust the -Tascii .Bl -bullet -dash -hyphen .It default and minimum width to new groff standards, it changed from 4n (in groff 1.15) to 2n (in groff 1.21) * same for -Tascii -enum, it changed from 5n to 2n * use -hang formatting for -Tascii -enum -width 2n * for -Tascii -enum, the default is -width 3n
Diffstat (limited to 'mdoc.h')
-rw-r--r--mdoc.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/mdoc.h b/mdoc.h
index 3971b255..a1b51b70 100644
--- a/mdoc.h
+++ b/mdoc.h
@@ -311,6 +311,7 @@ struct mdoc_bl {
int comp; /* -compact */
size_t ncols; /* -column arg count */
const char **cols; /* -column val ptr */
+ int count; /* -enum counter */
};
struct mdoc_bf {