diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2014-03-30 19:47:48 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2014-03-30 19:47:48 +0000 |
commit | b0b643c847c8a9530fc19fc081c52b9b6f5159dd (patch) | |
tree | ee93f2fc78dc0fddd4abbfdcd79f9df0714656ed /mdoc_argv.c | |
parent | 1f5b9d128ee296272c97a8e1a191d09c75b10fd1 (diff) | |
download | mandoc-b0b643c847c8a9530fc19fc081c52b9b6f5159dd.tar.gz |
Implement the roff(7) .ll (line length) request.
Found by naddy@ in the textproc/enchant(1) port.
Of course, do not use this in new manuals.
Diffstat (limited to 'mdoc_argv.c')
-rw-r--r-- | mdoc_argv.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mdoc_argv.c b/mdoc_argv.c index a7e609b1..17179f43 100644 --- a/mdoc_argv.c +++ b/mdoc_argv.c @@ -267,6 +267,7 @@ static const struct mdocarg mdocargs[MDOC_MAX] = { { ARGSFL_NONE, NULL }, /* sp */ { ARGSFL_NONE, NULL }, /* %U */ { ARGSFL_NONE, NULL }, /* Ta */ + { ARGSFL_NONE, NULL }, /* ll */ }; |