summaryrefslogtreecommitdiffstats
path: root/usr.bin/mandoc/man.c
diff options
context:
space:
mode:
authorschwarze <schwarze@openbsd.org>2014-03-30 19:47:32 +0000
committerschwarze <schwarze@openbsd.org>2014-03-30 19:47:32 +0000
commit5281506a9f5b05f301235275134377a86b8278f7 (patch)
tree1d1c9b143a634a4d430e685a6610355c208092f0 /usr.bin/mandoc/man.c
parentmake -Tascii explicit, to be safe when -Tlocale becomes the default (diff)
downloadwireguard-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.c')
-rw-r--r--usr.bin/mandoc/man.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mandoc/man.c b/usr.bin/mandoc/man.c
index ced7146831b..a7b09d3b271 100644
--- a/usr.bin/mandoc/man.c
+++ b/usr.bin/mandoc/man.c
@@ -1,4 +1,4 @@
-/* $Id: man.c,v 1.77 2014/03/23 20:57:23 schwarze Exp $ */
+/* $Id: man.c,v 1.78 2014/03/30 19:47:32 schwarze Exp $ */
/*
* Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2013, 2014 Ingo Schwarze <schwarze@openbsd.org>
@@ -41,7 +41,7 @@ const char *const __man_macronames[MAN_MAX] = {
"fi", "RE", "RS", "DT",
"UC", "PD", "AT", "in",
"ft", "OP", "EX", "EE",
- "UR", "UE"
+ "UR", "UE", "ll"
};
const char * const *man_macronames = __man_macronames;