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

Diff for /mandoc/mandoc.h between version 1.151 and 1.154

version 1.151, 2014/08/01 17:27:44 version 1.154, 2014/09/07 23:25:01
Line 49  enum mandocerr {
Line 49  enum mandocerr {
         MANDOCERR_WARNING, /* ===== start of warnings ===== */          MANDOCERR_WARNING, /* ===== start of warnings ===== */
   
         /* related to the prologue */          /* related to the prologue */
         MANDOCERR_TH_MISSING, /* missing .TH macro, using "unknown 1" */          MANDOCERR_DT_NOTITLE, /* missing manual title, using UNTITLED: line */
           MANDOCERR_TH_NOTITLE, /* missing manual title, using "": [macro] */
         MANDOCERR_TITLE_CASE, /* lower case character in document title */          MANDOCERR_TITLE_CASE, /* lower case character in document title */
           MANDOCERR_MSEC_MISSING, /* missing manual section, using "": macro */
         MANDOCERR_MSEC_BAD, /* unknown manual section: Dt ... section */          MANDOCERR_MSEC_BAD, /* unknown manual section: Dt ... section */
         MANDOCERR_ARCH_BAD, /* unknown manual volume or arch: Dt ... volume */          MANDOCERR_ARCH_BAD, /* unknown manual volume or arch: Dt ... volume */
         MANDOCERR_DATE_MISSING, /* missing date, using today's date */          MANDOCERR_DATE_MISSING, /* missing date, using today's date */
         MANDOCERR_DATE_BAD, /* cannot parse date, using it verbatim: date */          MANDOCERR_DATE_BAD, /* cannot parse date, using it verbatim: date */
         MANDOCERR_PROLOG_ORDER, /* prologue macros out of order: macro */          MANDOCERR_OS_MISSING, /* missing Os macro, using "" */
         MANDOCERR_PROLOG_REP, /* duplicate prologue macro: macro */          MANDOCERR_PROLOG_REP, /* duplicate prologue macro: macro */
         MANDOCERR_PROLOG_BAD, /* incomplete prologue, terminated by: macro */          MANDOCERR_PROLOG_LATE, /* late prologue macro: macro */
         MANDOCERR_PROLOG_ONLY, /* skipping prologue macro in body: macro */          MANDOCERR_DT_LATE, /* skipping late title macro: Dt args */
           MANDOCERR_PROLOG_ORDER, /* prologue macros out of order: macros */
   
         /* related to document structure */          /* related to document structure */
         MANDOCERR_SO, /* .so is fragile, better use ln(1): so path */          MANDOCERR_SO, /* .so is fragile, better use ln(1): so path */
Line 69  enum mandocerr {
Line 72  enum mandocerr {
         MANDOCERR_SEC_ORDER, /* sections out of conventional order: Sh title */          MANDOCERR_SEC_ORDER, /* sections out of conventional order: Sh title */
         MANDOCERR_SEC_REP, /* duplicate section title: Sh title */          MANDOCERR_SEC_REP, /* duplicate section title: Sh title */
         MANDOCERR_SEC_MSEC, /* unexpected section: Sh title for ... only */          MANDOCERR_SEC_MSEC, /* unexpected section: Sh title for ... only */
           MANDOCERR_AN_MISSING, /* AUTHORS section without An macro */
   
         /* related to macros and nesting */          /* related to macros and nesting */
         MANDOCERR_MACRO_OBS, /* obsolete macro: macro */          MANDOCERR_MACRO_OBS, /* obsolete macro: macro */
Line 168  enum mandocerr {
Line 172  enum mandocerr {
   
         /* ===== system errors ===== */          /* ===== system errors ===== */
   
           MANDOCERR_SYSDUP, /* cannot dup file descriptor */
           MANDOCERR_SYSEXEC, /* cannot exec */
           MANDOCERR_SYSEXIT, /* gunzip failed with code */
           MANDOCERR_SYSFORK, /* cannot fork */
         MANDOCERR_SYSOPEN, /* cannot open file */          MANDOCERR_SYSOPEN, /* cannot open file */
         MANDOCERR_SYSSTAT, /* cannot stat file */          MANDOCERR_SYSPIPE, /* cannot open pipe */
         MANDOCERR_SYSREAD, /* cannot read file */          MANDOCERR_SYSREAD, /* cannot read file */
           MANDOCERR_SYSSIG, /* gunzip died from signal */
           MANDOCERR_SYSSTAT, /* cannot stat file */
           MANDOCERR_SYSWAIT, /* wait failed */
   
         MANDOCERR_MAX          MANDOCERR_MAX
 };  };
Line 420  struct mparse  *mparse_alloc(int, enum mandoclevel, ma
Line 431  struct mparse  *mparse_alloc(int, enum mandoclevel, ma
                         const char *);                          const char *);
 void              mparse_free(struct mparse *);  void              mparse_free(struct mparse *);
 void              mparse_keep(struct mparse *);  void              mparse_keep(struct mparse *);
   enum mandoclevel  mparse_open(struct mparse *, int *, const char *,
                           pid_t *);
 enum mandoclevel  mparse_readfd(struct mparse *, int, const char *);  enum mandoclevel  mparse_readfd(struct mparse *, int, const char *);
 enum mandoclevel  mparse_readmem(struct mparse *, const void *, size_t,  enum mandoclevel  mparse_readmem(struct mparse *, const void *, size_t,
                         const char *);                          const char *);
Line 429  void    mparse_result(struct mparse *,
Line 442  void    mparse_result(struct mparse *,
 const char       *mparse_getkeep(const struct mparse *);  const char       *mparse_getkeep(const struct mparse *);
 const char       *mparse_strerror(enum mandocerr);  const char       *mparse_strerror(enum mandocerr);
 const char       *mparse_strlevel(enum mandoclevel);  const char       *mparse_strlevel(enum mandoclevel);
   enum mandoclevel  mparse_wait(struct mparse *, pid_t);
   
 __END_DECLS  __END_DECLS
   

Legend:
Removed from v.1.151  
changed lines
  Added in v.1.154

CVSweb