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

Diff for /mandoc/mandoc.h between version 1.272 and 1.275

version 1.272, 2021/07/04 15:38:26 version 1.275, 2022/04/24 13:38:46
Line 1 
Line 1 
 /* $Id$ */  /* $Id$ */
 /*  /*
  * Copyright (c) 2012-2021 Ingo Schwarze <schwarze@openbsd.org>   * Copyright (c) 2012-2022 Ingo Schwarze <schwarze@openbsd.org>
  * Copyright (c) 2010, 2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2010, 2011, 2014 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 215  enum mandocerr {
Line 215  enum mandocerr {
         MANDOCERR_NAMESC, /* escaped character not allowed in a name: name */          MANDOCERR_NAMESC, /* escaped character not allowed in a name: name */
         MANDOCERR_ARG_UNDEF, /* using macro argument outside macro */          MANDOCERR_ARG_UNDEF, /* using macro argument outside macro */
         MANDOCERR_ARG_NONUM, /* argument number is not numeric */          MANDOCERR_ARG_NONUM, /* argument number is not numeric */
           MANDOCERR_ARG_NEG, /* negative argument, using 0: request arg */
         MANDOCERR_BD_FILE, /* NOT IMPLEMENTED: Bd -file */          MANDOCERR_BD_FILE, /* NOT IMPLEMENTED: Bd -file */
         MANDOCERR_BD_NOARG, /* skipping display without arguments: Bd */          MANDOCERR_BD_NOARG, /* skipping display without arguments: Bd */
         MANDOCERR_BL_NOTYPE, /* missing list type, using -item: Bl */          MANDOCERR_BL_NOTYPE, /* missing list type, using -item: Bl */
Line 257  enum mandocerr {
Line 258  enum mandocerr {
         MANDOCERR_BADVAL_BAD, /* bad argument value */          MANDOCERR_BADVAL_BAD, /* bad argument value */
         MANDOCERR_BADVAL_DUPE, /* duplicate argument value */          MANDOCERR_BADVAL_DUPE, /* duplicate argument value */
         MANDOCERR_TAG, /* no such tag */          MANDOCERR_TAG, /* no such tag */
           MANDOCERR_MAN_TMARKDOWN, /* -Tmarkdown unsupported for man(7) input */
   
         MANDOCERR_SYSERR, /* ===== start of system errors ===== */          MANDOCERR_SYSERR, /* ===== start of system errors ===== */
   
Line 291  enum mandoc_esc {
Line 293  enum mandoc_esc {
         ESCAPE_FONTITALIC, /* italic font mode */          ESCAPE_FONTITALIC, /* italic font mode */
         ESCAPE_FONTBI, /* bold italic font mode */          ESCAPE_FONTBI, /* bold italic font mode */
         ESCAPE_FONTROMAN, /* roman font mode */          ESCAPE_FONTROMAN, /* roman font mode */
         ESCAPE_FONTCW, /* constant width font mode */          ESCAPE_FONTCR, /* constant width font mode */
           ESCAPE_FONTCB, /* constant width bold font mode */
           ESCAPE_FONTCI, /* constant width italic font mode */
         ESCAPE_FONTPREV, /* previous font mode */          ESCAPE_FONTPREV, /* previous font mode */
         ESCAPE_NUMBERED, /* a numbered glyph */          ESCAPE_NUMBERED, /* a numbered glyph */
         ESCAPE_UNICODE, /* a unicode codepoint */          ESCAPE_UNICODE, /* a unicode codepoint */

Legend:
Removed from v.1.272  
changed lines
  Added in v.1.275

CVSweb