From df7add94ac0e6037b421b622febfdbe3236dad5c Mon Sep 17 00:00:00 2001 From: Ingo Schwarze Date: Sun, 7 May 2017 17:31:45 +0000 Subject: 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@. --- roff_validate.c | 1 + 1 file changed, 1 insertion(+) (limited to 'roff_validate.c') diff --git a/roff_validate.c b/roff_validate.c index e18f3c1a..05df6cb6 100644 --- a/roff_validate.c +++ b/roff_validate.c @@ -35,6 +35,7 @@ static const roff_valid_fp roff_valids[ROFF_MAX] = { roff_valid_ft, /* ft */ NULL, /* ll */ NULL, /* sp */ + NULL, /* ta */ }; -- cgit