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

Diff for /mandoc/mandoc.h between version 1.251 and 1.255

version 1.251, 2018/08/23 19:33:27 version 1.255, 2018/11/25 19:24:20
Line 158  enum mandocerr {
Line 158  enum mandocerr {
         MANDOCERR_LB_BAD, /* unknown library name: Lb ... */          MANDOCERR_LB_BAD, /* unknown library name: Lb ... */
         MANDOCERR_RS_BAD, /* invalid content in Rs block: macro */          MANDOCERR_RS_BAD, /* invalid content in Rs block: macro */
         MANDOCERR_SM_BAD, /* invalid Boolean argument: macro arg */          MANDOCERR_SM_BAD, /* invalid Boolean argument: macro arg */
           MANDOCERR_CHAR_FONT, /* argument contains two font escapes */
         MANDOCERR_FT_BAD, /* unknown font, skipping request: ft font */          MANDOCERR_FT_BAD, /* unknown font, skipping request: ft font */
         MANDOCERR_TR_ODD, /* odd number of characters in request: tr char */          MANDOCERR_TR_ODD, /* odd number of characters in request: tr char */
   
Line 212  enum mandocerr {
Line 213  enum mandocerr {
         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 */
         MANDOCERR_CE_NONUM, /* argument is not numeric, using 1: ce ... */          MANDOCERR_CE_NONUM, /* argument is not numeric, using 1: ce ... */
           MANDOCERR_CHAR_ARG, /* argument is not a character: char ... */
         MANDOCERR_NM_NONAME, /* missing manual name, using "": Nm */          MANDOCERR_NM_NONAME, /* missing manual name, using "": Nm */
         MANDOCERR_OS_UNAME, /* uname(3) system call failed, using UNKNOWN */          MANDOCERR_OS_UNAME, /* uname(3) system call failed, using UNKNOWN */
         MANDOCERR_ST_BAD, /* unknown standard specifier: St standard */          MANDOCERR_ST_BAD, /* unknown standard specifier: St standard */
Line 228  enum mandocerr {
Line 230  enum mandocerr {
         MANDOCERR_TOOLARGE, /* input too large */          MANDOCERR_TOOLARGE, /* input too large */
         MANDOCERR_CHAR_UNSUPP, /* unsupported control character: number */          MANDOCERR_CHAR_UNSUPP, /* unsupported control character: number */
         MANDOCERR_REQ_UNSUPP, /* unsupported roff request: request */          MANDOCERR_REQ_UNSUPP, /* unsupported roff request: request */
           MANDOCERR_WHILE_NEST, /* nested .while loops */
           MANDOCERR_WHILE_OUTOF, /* end of scope with open .while loop */
           MANDOCERR_WHILE_INTO, /* end of .while loop in inner scope */
           MANDOCERR_WHILE_FAIL, /* cannot continue this .while loop */
         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 */
Line 314  struct tbl_dat {
Line 320  struct tbl_dat {
         struct tbl_cell  *layout; /* layout cell */          struct tbl_cell  *layout; /* layout cell */
         struct tbl_dat   *next;          struct tbl_dat   *next;
         char             *string; /* data (NULL if not TBL_DATA_DATA) */          char             *string; /* data (NULL if not TBL_DATA_DATA) */
         int               spans; /* how many spans follow */          int               hspans; /* how many horizontal spans follow */
           int               vspans; /* how many vertical spans follow */
         int               block; /* T{ text block T} */          int               block; /* T{ text block T} */
         enum tbl_datt     pos;          enum tbl_datt     pos;
 };  };
Line 432  enum mandoc_esc {
Line 439  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_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.251  
changed lines
  Added in v.1.255

CVSweb