diff options
author | 2018-08-18 02:03:41 +0000 | |
---|---|---|
committer | 2018-08-18 02:03:41 +0000 | |
commit | 5e5a9c6148e1b705903cbeca01022c7077619321 (patch) | |
tree | f3a8eba6765142421dfdf37273c5f973f65e9eed /usr.bin/mandoc/roff.c | |
parent | The official name for the ssdfb(4) reset GPIO attribute uses plural form. (diff) | |
download | wireguard-openbsd-5e5a9c6148e1b705903cbeca01022c7077619321.tar.xz wireguard-openbsd-5e5a9c6148e1b705903cbeca01022c7077619321.zip |
implement the GNU man-ext .SY/.YS (synopsis block) macro in man,
used in most manual pages of the groff package
Diffstat (limited to 'usr.bin/mandoc/roff.c')
-rw-r--r-- | usr.bin/mandoc/roff.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/mandoc/roff.c b/usr.bin/mandoc/roff.c index c2f6f982300..364c6b1cb79 100644 --- a/usr.bin/mandoc/roff.c +++ b/usr.bin/mandoc/roff.c @@ -1,4 +1,4 @@ -/* $OpenBSD: roff.c,v 1.204 2018/08/16 23:40:19 schwarze Exp $ */ +/* $OpenBSD: roff.c,v 1.205 2018/08/18 02:03:41 schwarze Exp $ */ /* * Copyright (c) 2008-2012, 2014 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2010-2015, 2017, 2018 Ingo Schwarze <schwarze@openbsd.org> @@ -333,7 +333,8 @@ const char *__roff_name[MAN_MAX + 1] = { "nf", "fi", "RE", "RS", "DT", "UC", "PD", "AT", "in", - "OP", "EX", "EE", "UR", + "SY", "YS", "OP", + "EX", "EE", "UR", "UE", "MT", "ME", NULL }; const char *const *roff_name = __roff_name; |