diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2017-05-08 15:34:54 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2017-05-08 15:34:54 +0000 |
commit | 743d8976911a7ef031de0fe12ef9ba67c3e7e5d4 (patch) | |
tree | 932d68bc5071b433591243f7ea70c4f9f7af959a /roff_validate.c | |
parent | 3d6c85a4e22160f04975c142bcdf4c4a12f39cbd (diff) | |
download | mandoc-743d8976911a7ef031de0fe12ef9ba67c3e7e5d4.tar.gz |
Basic implementation of the roff(7) .ti (temporary indent) request.
Needed by about four dozen ports (thanks to naddy@ for the research).
Diffstat (limited to 'roff_validate.c')
-rw-r--r-- | roff_validate.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/roff_validate.c b/roff_validate.c index 05df6cb6..e1ee0ea9 100644 --- a/roff_validate.c +++ b/roff_validate.c @@ -36,6 +36,7 @@ static const roff_valid_fp roff_valids[ROFF_MAX] = { NULL, /* ll */ NULL, /* sp */ NULL, /* ta */ + NULL, /* ti */ }; |