[BACK]Return to mandoc_msg.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/mandoc_msg.c between version 1.13 and 1.17

version 1.13, 2021/06/02 18:28:19 version 1.17, 2022/04/24 13:38:46
Line 1 
Line 1 
 /* $OpenBSD$ */  /* $OpenBSD$ */
 /*  /*
  * Copyright (c) 2014-2020 Ingo Schwarze <schwarze@openbsd.org>   * Copyright (c) 2014-2022 Ingo Schwarze <schwarze@openbsd.org>
  * Copyright (c) 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
Line 73  static const char *const type_message[MANDOCERR_MAX] =
Line 73  static const char *const type_message[MANDOCERR_MAX] =
         "no blank before trailing delimiter",          "no blank before trailing delimiter",
         "fill mode already enabled, skipping",          "fill mode already enabled, skipping",
         "fill mode already disabled, skipping",          "fill mode already disabled, skipping",
           "input text line longer than 80 bytes",
         "verbatim \"--\", maybe consider using \\(em",          "verbatim \"--\", maybe consider using \\(em",
         "function name without markup",          "function name without markup",
         "whitespace at end of input line",          "whitespace at end of input line",
Line 215  static const char *const type_message[MANDOCERR_MAX] =
Line 216  static const char *const type_message[MANDOCERR_MAX] =
         "escaped character not allowed in a name",          "escaped character not allowed in a name",
         "using macro argument outside macro",          "using macro argument outside macro",
         "argument number is not numeric",          "argument number is not numeric",
           "negative argument, using 0",
         "NOT IMPLEMENTED: Bd -file",          "NOT IMPLEMENTED: Bd -file",
         "skipping display without arguments",          "skipping display without arguments",
         "missing list type, using -item",          "missing list type, using -item",
Line 244  static const char *const type_message[MANDOCERR_MAX] =
Line 246  static const char *const type_message[MANDOCERR_MAX] =
         "eqn delim option in tbl",          "eqn delim option in tbl",
         "unsupported tbl layout modifier",          "unsupported tbl layout modifier",
         "ignoring macro in table",          "ignoring macro in table",
           "skipping tbl in -Tman mode",
           "skipping eqn in -Tman mode",
   
         /* bad command line arguments */          /* bad command line arguments */
         NULL,          NULL,
Line 254  static const char *const type_message[MANDOCERR_MAX] =
Line 258  static const char *const type_message[MANDOCERR_MAX] =
         "bad option value",          "bad option value",
         "duplicate option value",          "duplicate option value",
         "no such tag",          "no such tag",
           "-Tmarkdown unsupported for man(7) input",
   
         /* system errors */          /* system errors */
         NULL,          NULL,

Legend:
Removed from v.1.13  
changed lines
  Added in v.1.17

CVSweb