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/man_validate.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/man_validate.c')
-rw-r--r-- | usr.bin/mandoc/man_validate.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/mandoc/man_validate.c b/usr.bin/mandoc/man_validate.c index 01e38bc6f83..c0d1a6f9a65 100644 --- a/usr.bin/mandoc/man_validate.c +++ b/usr.bin/mandoc/man_validate.c @@ -1,4 +1,4 @@ -/* $OpenBSD: man_validate.c,v 1.107 2018/08/16 23:40:19 schwarze Exp $ */ +/* $OpenBSD: man_validate.c,v 1.108 2018/08/18 02:03:41 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2010, 2012-2018 Ingo Schwarze <schwarze@openbsd.org> @@ -83,6 +83,8 @@ static const v_check man_valids[MAN_MAX - MAN_TH] = { NULL, /* PD */ post_AT, /* AT */ post_in, /* in */ + NULL, /* SY */ + NULL, /* YS */ post_OP, /* OP */ NULL, /* EX */ NULL, /* EE */ |