diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2017-05-07 17:30:59 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2017-05-07 17:30:59 +0000 |
commit | 61e08b3ae1ef9c667611ead25bb473f9759fbb2b (patch) | |
tree | 69ea0dcafa67d4e8672f9209c6d7b889e0bdadac /usr.bin/mandoc/roff.h | |
parent | 03e014232b141d938451aca6862f5d43f0594524 (diff) |
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.h')
-rw-r--r-- | usr.bin/mandoc/roff.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mandoc/roff.h b/usr.bin/mandoc/roff.h index 063fff05573..61c72bf4baa 100644 --- a/usr.bin/mandoc/roff.h +++ b/usr.bin/mandoc/roff.h @@ -1,4 +1,4 @@ -/* $OpenBSD: roff.h,v 1.28 2017/05/05 15:16:26 schwarze Exp $ */ +/* $OpenBSD: roff.h,v 1.29 2017/05/07 17:30:58 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2013, 2014, 2015, 2017 Ingo Schwarze <schwarze@openbsd.org> @@ -70,6 +70,7 @@ enum roff_tok { ROFF_ft, ROFF_ll, ROFF_sp, + ROFF_ta, ROFF_MAX, ROFF_ab, ROFF_ad, @@ -271,7 +272,6 @@ enum roff_tok { ROFF_sv, ROFF_sy, ROFF_T_, - ROFF_ta, ROFF_tc, ROFF_TE, ROFF_TH, |