aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/man_validate.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2014-07-01 22:37:15 +0000
committerIngo Schwarze <schwarze@openbsd.org>2014-07-01 22:37:15 +0000
commitc9939e9971e983553a2f3f786d124427b6d4e16e (patch)
treef4e530c43b8a7079a018da09a4fd5240a264ba3f /man_validate.c
parent355ab2dc6a1499cee84317c7fbe304a5c006c3d1 (diff)
downloadmandoc-c9939e9971e983553a2f3f786d124427b6d4e16e.tar.gz
mandoc-c9939e9971e983553a2f3f786d124427b6d4e16e.tar.zst
mandoc-c9939e9971e983553a2f3f786d124427b6d4e16e.zip
Clean up the warnings related to document structure.
* Hierarchical naming of the related enum mandocerr items. * Mention the offending macro, section title, or string. While here, improve some wordings: * Descriptive instead of imperative style. * Uniform style for "missing" and "skipping". * Where applicable, mention the fallback used.
Diffstat (limited to 'man_validate.c')
-rw-r--r--man_validate.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/man_validate.c b/man_validate.c
index 8e786842..579e91ff 100644
--- a/man_validate.c
+++ b/man_validate.c
@@ -1,4 +1,4 @@
-/* $Id: man_validate.c,v 1.93 2014/06/20 23:02:31 schwarze Exp $ */
+/* $Id: man_validate.c,v 1.94 2014/07/01 22:37:15 schwarze Exp $ */
/*
* Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2010, 2012, 2013, 2014 Ingo Schwarze <schwarze@openbsd.org>
@@ -414,7 +414,10 @@ post_TH(CHKARGS)
/* Only warn about this once... */
if (isalpha((unsigned char)*p) &&
! isupper((unsigned char)*p)) {
- man_nmsg(man, n, MANDOCERR_TITLE_CASE);
+ mandoc_msg(MANDOCERR_TITLE_CASE,
+ man->parse, n->line,
+ n->pos + (p - n->string),
+ n->string);
break;
}
}