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

Diff for /mandoc/mandoc.h between version 1.262 and 1.263

version 1.262, 2018/12/16 00:17:02 version 1.263, 2019/07/10 19:39:01
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2010, 2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2010, 2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2012-2018 Ingo Schwarze <schwarze@openbsd.org>   * Copyright (c) 2012-2019 Ingo Schwarze <schwarze@openbsd.org>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above   * purpose with or without fee is hereby granted, provided that the above
Line 193  enum mandocerr {
Line 193  enum mandocerr {
         MANDOCERR_TBLDATA_BLK, /* data block open at end of tbl: macro */          MANDOCERR_TBLDATA_BLK, /* data block open at end of tbl: macro */
   
         /* related to document structure and macros */          /* related to document structure and macros */
         MANDOCERR_FILE, /* cannot open file */  
         MANDOCERR_PROLOG_REP, /* duplicate prologue macro: macro */          MANDOCERR_PROLOG_REP, /* duplicate prologue macro: macro */
         MANDOCERR_DT_LATE, /* skipping late title macro: Dt args */          MANDOCERR_DT_LATE, /* skipping late title macro: Dt args */
         MANDOCERR_ROFFLOOP, /* input stack limit exceeded, infinite loop? */          MANDOCERR_ROFFLOOP, /* input stack limit exceeded, infinite loop? */
Line 241  enum mandocerr {
Line 240  enum mandocerr {
         MANDOCERR_TBLOPT_EQN, /* eqn delim option in tbl: arg */          MANDOCERR_TBLOPT_EQN, /* eqn delim option in tbl: arg */
         MANDOCERR_TBLLAYOUT_MOD, /* unsupported tbl layout modifier: m */          MANDOCERR_TBLLAYOUT_MOD, /* unsupported tbl layout modifier: m */
         MANDOCERR_TBLMACRO, /* ignoring macro in table: macro */          MANDOCERR_TBLMACRO, /* ignoring macro in table: macro */
   
           MANDOCERR_BADARG, /* ===== start of bad invocations ===== */
   
           MANDOCERR_BADARG_BAD, /* bad argument */
           MANDOCERR_BADARG_DUPE, /* duplicate argument */
           MANDOCERR_BADVAL, /* does not take a value */
           MANDOCERR_BADVAL_MISS, /* missing argument value */
           MANDOCERR_BADVAL_BAD, /* bad argument value */
           MANDOCERR_BADVAL_DUPE, /* duplicate argument value */
           MANDOCERR_TAG, /* no such tag */
   
           MANDOCERR_SYSERR, /* ===== start of system errors ===== */
   
           MANDOCERR_DUP,
           MANDOCERR_EXEC,
           MANDOCERR_FDOPEN,
           MANDOCERR_FFLUSH,
           MANDOCERR_FORK,
           MANDOCERR_FSTAT,
           MANDOCERR_GETLINE,
           MANDOCERR_GLOB,
           MANDOCERR_GZCLOSE,
           MANDOCERR_GZDOPEN,
           MANDOCERR_MKSTEMP,
           MANDOCERR_OPEN,
           MANDOCERR_PLEDGE,
           MANDOCERR_READ,
           MANDOCERR_WAIT,
           MANDOCERR_WRITE,
   
         MANDOCERR_MAX          MANDOCERR_MAX
 };  };

Legend:
Removed from v.1.262  
changed lines
  Added in v.1.263

CVSweb