diff options
author | 2014-03-30 19:47:32 +0000 | |
---|---|---|
committer | 2014-03-30 19:47:32 +0000 | |
commit | 5281506a9f5b05f301235275134377a86b8278f7 (patch) | |
tree | 1d1c9b143a634a4d430e685a6610355c208092f0 /usr.bin/mandoc/man_html.c | |
parent | make -Tascii explicit, to be safe when -Tlocale becomes the default (diff) | |
download | wireguard-openbsd-5281506a9f5b05f301235275134377a86b8278f7.tar.xz wireguard-openbsd-5281506a9f5b05f301235275134377a86b8278f7.zip |
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 'usr.bin/mandoc/man_html.c')
-rw-r--r-- | usr.bin/mandoc/man_html.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/mandoc/man_html.c b/usr.bin/mandoc/man_html.c index f78447dafa4..e367e883b1b 100644 --- a/usr.bin/mandoc/man_html.c +++ b/usr.bin/mandoc/man_html.c @@ -1,4 +1,4 @@ -/* $Id: man_html.c,v 1.50 2014/03/08 15:50:21 schwarze Exp $ */ +/* $Id: man_html.c,v 1.51 2014/03/30 19:47:32 schwarze Exp $ */ /* * Copyright (c) 2008-2012 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2013, 2014 Ingo Schwarze <schwarze@openbsd.org> @@ -115,6 +115,7 @@ static const struct htmlman mans[MAN_MAX] = { { man_literal_pre, NULL }, /* EE */ { man_UR_pre, NULL }, /* UR */ { NULL, NULL }, /* UE */ + { man_ign_pre, NULL }, /* ll */ }; /* |