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 /man_macro.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 'man_macro.c')
-rw-r--r-- | man_macro.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/man_macro.c b/man_macro.c index bcfdcc55..9049a6ad 100644 --- a/man_macro.c +++ b/man_macro.c @@ -91,6 +91,7 @@ const struct man_macro __man_macros[MAN_MAX] = { { in_line_eoln, MAN_BSCOPE }, /* EE */ { blk_exp, MAN_BSCOPE | MAN_EXPLICIT }, /* UR */ { blk_close, 0 }, /* UE */ + { in_line_eoln, 0 }, /* ll */ }; const struct man_macro * const man_macros = __man_macros; |