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

Diff for /mandoc/tbl_layout.c between version 1.43 and 1.44

version 1.43, 2017/06/13 16:12:01 version 1.44, 2017/06/27 18:25:02
Line 20 
Line 20 
 #include <sys/types.h>  #include <sys/types.h>
   
 #include <ctype.h>  #include <ctype.h>
   #include <stdint.h>
 #include <stdlib.h>  #include <stdlib.h>
 #include <string.h>  #include <string.h>
 #include <time.h>  #include <time.h>
Line 357  cell_alloc(struct tbl_node *tbl, struct tbl_row *rp, e
Line 358  cell_alloc(struct tbl_node *tbl, struct tbl_row *rp, e
         struct tbl_cell *p, *pp;          struct tbl_cell *p, *pp;
   
         p = mandoc_calloc(1, sizeof(*p));          p = mandoc_calloc(1, sizeof(*p));
           p->spacing = SIZE_MAX;
         p->pos = pos;          p->pos = pos;
   
         if ((pp = rp->last) != NULL) {          if ((pp = rp->last) != NULL) {

Legend:
Removed from v.1.43  
changed lines
  Added in v.1.44

CVSweb