Print this page
5051 import mdocml-1.12.3
Reviewed by: Yuri Pankov <yuri.pankov@nexenta.com>
Approved by: TBD

Split Close
Expand all
Collapse all
          --- old/usr/src/cmd/mandoc/tbl.c
          +++ new/usr/src/cmd/mandoc/tbl.c
   1      -/*      $Id: tbl.c,v 1.26 2011/07/25 15:37:00 kristaps Exp $ */
        1 +/*      $Id: tbl.c,v 1.27 2013/05/31 22:08:09 schwarze Exp $ */
   2    2  /*
   3    3   * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
   4    4   * Copyright (c) 2011 Ingo Schwarze <schwarze@openbsd.org>
   5    5   *
   6    6   * Permission to use, copy, modify, and distribute this software for any
   7    7   * purpose with or without fee is hereby granted, provided that the above
   8    8   * copyright notice and this permission notice appear in all copies.
   9    9   *
  10   10   * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  11   11   * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
↓ open down ↓ 53 lines elided ↑ open up ↑
  65   65          /*
  66   66           * This only returns zero if the line is empty, so we ignore it
  67   67           * and continue on.
  68   68           */
  69   69          return(tbl_data(tbl, ln, p) ? ROFF_TBL : ROFF_IGN);
  70   70  }
  71   71  
  72   72  struct tbl_node *
  73   73  tbl_alloc(int pos, int line, struct mparse *parse)
  74   74  {
  75      -        struct tbl_node *p;
       75 +        struct tbl_node *tbl;
  76   76  
  77      -        p = mandoc_calloc(1, sizeof(struct tbl_node));
  78      -        p->line = line;
  79      -        p->pos = pos;
  80      -        p->parse = parse;
  81      -        p->part = TBL_PART_OPTS;
  82      -        p->opts.tab = '\t';
  83      -        p->opts.linesize = 12;
  84      -        p->opts.decimal = '.';
  85      -        return(p);
       77 +        tbl = mandoc_calloc(1, sizeof(struct tbl_node));
       78 +        tbl->line = line;
       79 +        tbl->pos = pos;
       80 +        tbl->parse = parse;
       81 +        tbl->part = TBL_PART_OPTS;
       82 +        tbl->opts.tab = '\t';
       83 +        tbl->opts.linesize = 12;
       84 +        tbl->opts.decimal = '.';
       85 +        return(tbl);
  86   86  }
  87   87  
  88   88  void
  89      -tbl_free(struct tbl_node *p)
       89 +tbl_free(struct tbl_node *tbl)
  90   90  {
  91   91          struct tbl_row  *rp;
  92   92          struct tbl_cell *cp;
  93   93          struct tbl_span *sp;
  94   94          struct tbl_dat  *dp;
  95   95          struct tbl_head *hp;
  96   96  
  97      -        while (NULL != (rp = p->first_row)) {
  98      -                p->first_row = rp->next;
       97 +        while (NULL != (rp = tbl->first_row)) {
       98 +                tbl->first_row = rp->next;
  99   99                  while (rp->first) {
 100  100                          cp = rp->first;
 101  101                          rp->first = cp->next;
 102  102                          free(cp);
 103  103                  }
 104  104                  free(rp);
 105  105          }
 106  106  
 107      -        while (NULL != (sp = p->first_span)) {
 108      -                p->first_span = sp->next;
      107 +        while (NULL != (sp = tbl->first_span)) {
      108 +                tbl->first_span = sp->next;
 109  109                  while (sp->first) {
 110  110                          dp = sp->first;
 111  111                          sp->first = dp->next;
 112  112                          if (dp->string)
 113  113                                  free(dp->string);
 114  114                          free(dp);
 115  115                  }
 116  116                  free(sp);
 117  117          }
 118  118  
 119      -        while (NULL != (hp = p->first_head)) {
 120      -                p->first_head = hp->next;
      119 +        while (NULL != (hp = tbl->first_head)) {
      120 +                tbl->first_head = hp->next;
 121  121                  free(hp);
 122  122          }
 123  123  
 124      -        free(p);
      124 +        free(tbl);
 125  125  }
 126  126  
 127  127  void
 128  128  tbl_restart(int line, int pos, struct tbl_node *tbl)
 129  129  {
 130  130          if (TBL_PART_CDATA == tbl->part)
 131  131                  mandoc_msg(MANDOCERR_TBLBLOCK, tbl->parse, 
 132  132                                  tbl->line, tbl->pos, NULL);
 133  133  
 134  134          tbl->part = TBL_PART_LAYOUT;
↓ open down ↓ 41 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX