diff options
author | 2017-06-10 01:48:31 +0000 | |
---|---|---|
committer | 2017-06-10 01:48:31 +0000 | |
commit | 04fbb99f8882e168f342303c8d92ac6c8c0d2ba9 (patch) | |
tree | 7a4284949786346bb96bcc44af9f287d8934a772 /usr.bin/mandoc/mandoc.h | |
parent | do not break the line between Bsx/Bx/Fx/Nx/Ox/Dx and its arguments (diff) | |
download | wireguard-openbsd-04fbb99f8882e168f342303c8d92ac6c8c0d2ba9.tar.xz wireguard-openbsd-04fbb99f8882e168f342303c8d92ac6c8c0d2ba9.zip |
style message about missing blank before trailing delimiter;
inspired by mdoclint(1), and jmc@ considers it useful
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 d9860bf0dc3..b839b212061 100644 --- a/usr.bin/mandoc/mandoc.h +++ b/usr.bin/mandoc/mandoc.h @@ -1,4 +1,4 @@ -/* $OpenBSD: mandoc.h,v 1.168 2017/06/08 18:11:15 schwarze Exp $ */ +/* $OpenBSD: mandoc.h,v 1.169 2017/06/10 01:48:31 schwarze Exp $ */ /* * Copyright (c) 2010, 2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2010-2017 Ingo Schwarze <schwarze@openbsd.org> @@ -51,6 +51,7 @@ enum mandocerr { MANDOCERR_ER_ORDER, /* errnos out of order: Er ... */ 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_WARNING, /* ===== start of warnings ===== */ |