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

Diff for /src/usr.bin/mandoc/tbl_layout.c between version 1.30 and 1.31

version 1.30, 2017/06/13 16:11:58 version 1.31, 2017/06/27 18:23:29
Line 18 
Line 18 
 #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 355 
Line 356 
         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.30  
changed lines
  Added in v.1.31