=================================================================== RCS file: /cvs/mandoc/read.c,v retrieving revision 1.180 retrieving revision 1.186 diff -u -p -r1.180 -r1.186 --- mandoc/read.c 2017/06/24 15:59:50 1.180 +++ mandoc/read.c 2017/07/03 13:40:19 1.186 @@ -1,4 +1,4 @@ -/* $Id: read.c,v 1.180 2017/06/24 15:59:50 schwarze Exp $ */ +/* $Id: read.c,v 1.186 2017/07/03 13:40:19 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2010-2017 Ingo Schwarze @@ -90,13 +90,16 @@ static const char * const mandocerrs[MANDOCERR_MAX] = "Mdocdate found", "Mdocdate missing", + "unknown architecture", "operating system explicitly specified", "RCS id missing", + "referenced manual not found", "generic style suggestion", "legacy man(7) date format", "duplicate RCS id", + "typo in section name", "useless macro", "consider using OS macro", "errnos out of order", @@ -115,6 +118,7 @@ static const char * const mandocerrs[MANDOCERR_MAX] = "unknown manual section", "missing date, using today's date", "cannot parse date, using it verbatim", + "date in the future, using it anyway", "missing Os macro, using \"\"", "duplicate prologue macro", "late prologue macro", @@ -136,6 +140,7 @@ static const char * const mandocerrs[MANDOCERR_MAX] = "sections out of conventional order", "duplicate section title", "unexpected section", + "cross reference to self", "unusual Xr order", "unusual Xr punctuation", "AUTHORS section without An macro", @@ -149,6 +154,7 @@ static const char * const mandocerrs[MANDOCERR_MAX] = "blocks badly nested", "nested displays are not portable", "moving content out of list", + "first macro on line", "fill mode already enabled, skipping", "fill mode already disabled, skipping", "line scope broken", @@ -167,6 +173,7 @@ static const char * const mandocerrs[MANDOCERR_MAX] = "missing function name, using \"\"", "empty head in list item", "empty list item", + "missing argument, using next line", "missing font type, using \\fR", "unknown font type, using \\fR", "nothing follows prefix",