diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2015-01-20 21:16:51 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2015-01-20 21:16:51 +0000 |
commit | 222b2747ea0806609b71ff5fa9a4c6f21ddc3c46 (patch) | |
tree | 056a00f20a99a44fa9017101a00d94f962a4d8fd /man.1 | |
parent | 7b1d8d6cb19169cc19bdb9708793a3cbedf63b81 (diff) | |
download | mandoc-222b2747ea0806609b71ff5fa9a4c6f21ddc3c46.tar.gz |
Split the -Werror message level into -Werror (broken manual, probably
using mandoc is better than using groff) and -Wunsupp (manual using
unsupported low-level roff(7) feature, probably using groff is better
than using mandoc). Once this feature is complete, it is intended
to help porting, making the decision whether to USE_GROFF easier.
As a first step, distinguish four classes of roff(7) requests:
1. Supported (currently 24 requests)
2. Currently ignored because unimportant (120) -> no message
3. Ignored for good because insecure (14) -> -Werror
4. Currently unsupported (68) -> these trigger the new -Wunsupp messages
Diffstat (limited to 'man.1')
-rw-r--r-- | man.1 | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -300,9 +300,10 @@ to be reported on the standard error output and to affect the exit status. The .Ar level can be -.Cm warning +.Cm warning , +.Cm error , or -.Cm error ; +.Cm unsupp ; .Cm all is an alias for .Cm warning . |