diff options
| author | 2017-05-07 17:30:58 +0000 | |
|---|---|---|
| committer | 2017-05-07 17:30:58 +0000 | |
| commit | f7242c43b2490edb033d5e26b3d5c542f5982c75 (patch) | |
| tree | 6c68f3053717297582a6bd85cf85b8f40ab2a942 /usr.bin/mandoc/roff_html.c | |
| parent | Don't allow a negative process group ID, it would turn into a (diff) | |
| download | wireguard-openbsd-f7242c43b2490edb033d5e26b3d5c542f5982c75.tar.xz wireguard-openbsd-f7242c43b2490edb033d5e26b3d5c542f5982c75.zip | |
Basic implementation of the roff(7) .ta (define tab stops) request.
This is the first feature made possible by the parser reorganization.
Improves the formatting of the SYNOPSIS in many Xenocara GL manuals.
Also important for ports, as reported by many, including naddy@.
Diffstat (limited to 'usr.bin/mandoc/roff_html.c')
| -rw-r--r-- | usr.bin/mandoc/roff_html.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/mandoc/roff_html.c b/usr.bin/mandoc/roff_html.c index c17b155155c..7778d94c433 100644 --- a/usr.bin/mandoc/roff_html.c +++ b/usr.bin/mandoc/roff_html.c @@ -1,4 +1,4 @@ -/* $OpenBSD: roff_html.c,v 1.3 2017/05/05 15:16:26 schwarze Exp $ */ +/* $OpenBSD: roff_html.c,v 1.4 2017/05/07 17:30:58 schwarze Exp $ */ /* * Copyright (c) 2010 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2014, 2017 Ingo Schwarze <schwarze@openbsd.org> @@ -36,6 +36,7 @@ static const roff_html_pre_fp roff_html_pre_acts[ROFF_MAX] = { NULL, /* ft */ NULL, /* ll */ roff_html_pre_sp, /* sp */ + NULL, /* ta */ }; |
