[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.15 and 1.20

version 1.15, 2021/07/04 15:38:26 version 1.20, 2022/06/07 09:54:40
Line 1 
Line 1 
 /* $OpenBSD$ */  /* $OpenBSD$ */
 /*  /*
  * Copyright (c) 2014-2021 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 166  static const char *const type_message[MANDOCERR_MAX] =
Line 166  static const char *const type_message[MANDOCERR_MAX] =
         "invalid Boolean argument",          "invalid Boolean argument",
         "argument contains two font escapes",          "argument contains two font escapes",
         "unknown font, skipping request",          "unknown font, skipping request",
           "ignoring distance argument",
         "odd number of characters in request",          "odd number of characters in request",
   
         /* related to plain text */          /* related to plain text */
         "blank line in fill mode, using .sp",          "blank line in fill mode, using .sp",
         "tab in filled text",          "tab in filled text",
         "new sentence, new line",          "new sentence, new line",
         "invalid escape sequence",          "invalid escape sequence argument",
         "undefined escape, printing literally",          "undefined escape, printing literally",
         "undefined string, using \"\"",          "undefined string, using \"\"",
   
Line 216  static const char *const type_message[MANDOCERR_MAX] =
Line 217  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",
         "argument is not numeric, using 1",          "argument is not numeric, using 1",
         "argument is not a character",          "argument is not a character",
           "skipping unusable escape sequence",
         "missing manual name, using \"\"",          "missing manual name, using \"\"",
         "uname(3) system call failed, using UNKNOWN",          "uname(3) system call failed, using UNKNOWN",
         "unknown standard specifier",          "unknown standard specifier",
Line 233  static const char *const type_message[MANDOCERR_MAX] =
Line 236  static const char *const type_message[MANDOCERR_MAX] =
         "skipping excess arguments",          "skipping excess arguments",
         "divide by zero",          "divide by zero",
   
           /* related to escape sequences */
           "incomplete escape sequence",
           "invalid special character",
           "unknown special character",
           "invalid escape argument delimiter",
   
         "unsupported feature",          "unsupported feature",
         "input too large",          "input too large",
         "unsupported control character",          "unsupported control character",
Line 257  static const char *const type_message[MANDOCERR_MAX] =
Line 266  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.15  
changed lines
  Added in v.1.20

CVSweb