[BACK]Return to out.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / mandoc

Diff for /src/usr.bin/mandoc/out.h between version 1.19 and 1.20

version 1.19, 2017/06/08 12:54:40 version 1.20, 2017/06/08 18:11:15
Line 41 
Line 41 
         double            scale;          double            scale;
 };  };
   
   typedef size_t  (*tbl_sulen)(const struct roffsu *, void *);
 typedef size_t  (*tbl_strlen)(const char *, void *);  typedef size_t  (*tbl_strlen)(const char *, void *);
 typedef size_t  (*tbl_len)(size_t, void *);  typedef size_t  (*tbl_len)(size_t, void *);
   
 struct  rofftbl {  struct  rofftbl {
           tbl_sulen        sulen; /* calculate scaling unit length */
         tbl_strlen       slen; /* calculate string length */          tbl_strlen       slen; /* calculate string length */
         tbl_len          len; /* produce width of empty space */          tbl_len          len; /* produce width of empty space */
         struct roffcol  *cols; /* master column specifiers */          struct roffcol  *cols; /* master column specifiers */
         void            *arg; /* passed to slen and len */          void            *arg; /* passed to sulen, slen, and len */
 };  };
   
 #define SCALE_VS_INIT(p, v) \  #define SCALE_VS_INIT(p, v) \

Legend:
Removed from v.1.19  
changed lines
  Added in v.1.20