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

Diff for /src/usr.bin/mandoc/tbl.c between version 1.26 and 1.27

version 1.26, 2018/12/14 05:17:45 version 1.27, 2018/12/14 06:33:03
Line 86 
Line 86 
 }  }
   
 struct tbl_node *  struct tbl_node *
 tbl_alloc(int pos, int line, struct mparse *parse, struct tbl_node *last_tbl)  tbl_alloc(int pos, int line, struct tbl_node *last_tbl)
 {  {
         struct tbl_node *tbl;          struct tbl_node *tbl;
   
Line 95 
Line 95 
                 last_tbl->next = tbl;                  last_tbl->next = tbl;
         tbl->line = line;          tbl->line = line;
         tbl->pos = pos;          tbl->pos = pos;
         tbl->parse = parse;  
         tbl->part = TBL_PART_OPTS;          tbl->part = TBL_PART_OPTS;
         tbl->opts.tab = '\t';          tbl->opts.tab = '\t';
         tbl->opts.decimal = '.';          tbl->opts.decimal = '.';

Legend:
Removed from v.1.26  
changed lines
  Added in v.1.27