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_validate.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_validate.c')
-rw-r--r-- | usr.bin/mandoc/roff_validate.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/mandoc/roff_validate.c b/usr.bin/mandoc/roff_validate.c index 11ce9e19c2e..154b66a90e9 100644 --- a/usr.bin/mandoc/roff_validate.c +++ b/usr.bin/mandoc/roff_validate.c @@ -1,4 +1,4 @@ -/* $OpenBSD: roff_validate.c,v 1.3 2017/05/05 15:16:26 schwarze Exp $ */ +/* $OpenBSD: roff_validate.c,v 1.4 2017/05/07 17:30:58 schwarze Exp $ */ /* * Copyright (c) 2010, 2017 Ingo Schwarze <schwarze@openbsd.org> * @@ -35,6 +35,7 @@ static const roff_valid_fp roff_valids[ROFF_MAX] = { roff_valid_ft, /* ft */ NULL, /* ll */ NULL, /* sp */ + NULL, /* ta */ }; |