diff options
author | 2012-02-26 19:41:27 +0000 | |
---|---|---|
committer | 2012-02-26 19:41:27 +0000 | |
commit | 66ae7cc0c0aabb158df4446965606366ddc242f9 (patch) | |
tree | 4742c20c215866bdf5cd0ff3ebbf25f129a9e8d7 /usr.bin/mandoc/man.c | |
parent | Fix several manpage titles, from Lawrence Teo. (diff) | |
download | wireguard-openbsd-66ae7cc0c0aabb158df4446965606366ddc242f9.tar.xz wireguard-openbsd-66ae7cc0c0aabb158df4446965606366ddc242f9.zip |
Support .OP, one of the extended man macros; from kristaps@.
Do not use this GNU extension, we take it for compatibility only.
Diffstat (limited to 'usr.bin/mandoc/man.c')
-rw-r--r-- | usr.bin/mandoc/man.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mandoc/man.c b/usr.bin/mandoc/man.c index 42d44a0911e..8635e7b79e7 100644 --- a/usr.bin/mandoc/man.c +++ b/usr.bin/mandoc/man.c @@ -1,4 +1,4 @@ -/* $Id: man.c,v 1.64 2011/11/16 17:21:15 schwarze Exp $ */ +/* $Id: man.c,v 1.65 2012/02/26 19:41:27 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv> * @@ -36,7 +36,7 @@ const char *const __man_macronames[MAN_MAX] = { "RI", "na", "sp", "nf", "fi", "RE", "RS", "DT", "UC", "PD", "AT", "in", - "ft" + "ft", "OP" }; const char * const *man_macronames = __man_macronames; |