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

Diff for /mandoc/tbl.c between version 1.45 and 1.46

version 1.45, 2018/12/14 05:18:03 version 1.46, 2018/12/14 06:33:14
Line 88  tbl_read(struct tbl_node *tbl, int ln, const char *p, 
Line 88  tbl_read(struct tbl_node *tbl, int ln, const char *p, 
 }  }
   
 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 97  tbl_alloc(int pos, int line, struct mparse *parse, str
Line 97  tbl_alloc(int pos, int line, struct mparse *parse, str
                 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.45  
changed lines
  Added in v.1.46

CVSweb