diff options
author | 2017-06-11 17:16:36 +0000 | |
---|---|---|
committer | 2017-06-11 17:16:36 +0000 | |
commit | 48497dd55d11cdab4c05d3b652aff494ea77b23d (patch) | |
tree | 59dd4156eba1ec7fbb769ce2969f957153b08cfb /usr.bin/mandoc/mandoc.h | |
parent | missing .Fn macros; found with mandoc -Tlint (diff) | |
download | wireguard-openbsd-48497dd55d11cdab4c05d3b652aff494ea77b23d.tar.xz wireguard-openbsd-48497dd55d11cdab4c05d3b652aff494ea77b23d.zip |
style message about missing .Fn markup; inspired by mdoclint
Diffstat (limited to 'usr.bin/mandoc/mandoc.h')
-rw-r--r-- | usr.bin/mandoc/mandoc.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/mandoc/mandoc.h b/usr.bin/mandoc/mandoc.h index b839b212061..d659d20d873 100644 --- a/usr.bin/mandoc/mandoc.h +++ b/usr.bin/mandoc/mandoc.h @@ -1,4 +1,4 @@ -/* $OpenBSD: mandoc.h,v 1.169 2017/06/10 01:48:31 schwarze Exp $ */ +/* $OpenBSD: mandoc.h,v 1.170 2017/06/11 17:16:36 schwarze Exp $ */ /* * Copyright (c) 2010, 2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2010-2017 Ingo Schwarze <schwarze@openbsd.org> @@ -52,6 +52,7 @@ enum mandocerr { MANDOCERR_ER_REP, /* duplicate errno: Er ... */ MANDOCERR_ND_DOT, /* description line ends with a full stop */ MANDOCERR_DELIM, /* no blank before trailing delimiter: macro ... */ + MANDOCERR_FUNC, /* function name without markup: name() */ MANDOCERR_WARNING, /* ===== start of warnings ===== */ |