=================================================================== RCS file: /cvs/mandoc/mandoc_msg.c,v retrieving revision 1.12 retrieving revision 1.18 diff -u -p -r1.12 -r1.18 --- mandoc/mandoc_msg.c 2020/09/01 18:25:27 1.12 +++ mandoc/mandoc_msg.c 2022/04/28 16:21:09 1.18 @@ -1,6 +1,6 @@ -/* $OpenBSD: mandoc_msg.c,v 1.12 2020/09/01 18:25:27 schwarze Exp $ */ +/* $OpenBSD: mandoc_msg.c,v 1.18 2022/04/28 16:21:09 schwarze Exp $ */ /* - * Copyright (c) 2014-2020 Ingo Schwarze + * Copyright (c) 2014-2022 Ingo Schwarze * Copyright (c) 2010, 2011 Kristaps Dzonsons * * Permission to use, copy, modify, and distribute this software for any @@ -55,7 +55,6 @@ static const char *const type_message[MANDOCERR_MAX] = "unknown architecture", "operating system explicitly specified", "RCS id missing", - "referenced manual not found", "generic style suggestion", @@ -69,10 +68,12 @@ static const char *const type_message[MANDOCERR_MAX] = "consider using OS macro", "errnos out of order", "duplicate errno", + "referenced manual not found", "trailing delimiter", "no blank before trailing delimiter", "fill mode already enabled, skipping", "fill mode already disabled, skipping", + "input text line longer than 80 bytes", "verbatim \"--\", maybe consider using \\(em", "function name without markup", "whitespace at end of input line", @@ -165,6 +166,7 @@ static const char *const type_message[MANDOCERR_MAX] = "invalid Boolean argument", "argument contains two font escapes", "unknown font, skipping request", + "ignoring distance argument", "odd number of characters in request", /* related to plain text */ @@ -215,11 +217,13 @@ static const char *const type_message[MANDOCERR_MAX] = "escaped character not allowed in a name", "using macro argument outside macro", "argument number is not numeric", + "negative argument, using 0", "NOT IMPLEMENTED: Bd -file", "skipping display without arguments", "missing list type, using -item", "argument is not numeric, using 1", "argument is not a character", + "skipping unusable escape sequence", "missing manual name, using \"\"", "uname(3) system call failed, using UNKNOWN", "unknown standard specifier", @@ -244,6 +248,8 @@ static const char *const type_message[MANDOCERR_MAX] = "eqn delim option in tbl", "unsupported tbl layout modifier", "ignoring macro in table", + "skipping tbl in -Tman mode", + "skipping eqn in -Tman mode", /* bad command line arguments */ NULL, @@ -254,6 +260,7 @@ static const char *const type_message[MANDOCERR_MAX] = "bad option value", "duplicate option value", "no such tag", + "-Tmarkdown unsupported for man(7) input", /* system errors */ NULL,