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

Diff for /mandoc/tbl.c between version 1.10 and 1.12

version 1.10, 2010/12/31 14:52:41 version 1.12, 2011/01/01 13:37:40
Line 56  tbl_read(struct tbl *tbl, int ln, const char *p, int o
Line 56  tbl_read(struct tbl *tbl, int ln, const char *p, int o
                 break;                  break;
         }          }
   
         /*          /*
          * FIXME: allow the original string to slip through for the time           * This only returns zero if the line is empty, so we ignore it
          * being.           * and continue on.
          */           */
         return(tbl_data(tbl, ln, p) ? ROFF_CONT : ROFF_ERR);          return(tbl_data(tbl, ln, p) ? ROFF_TBL : ROFF_IGN);
 }  }
   
 struct tbl *  struct tbl *
Line 120  tbl_restart(struct tbl *tbl)
Line 120  tbl_restart(struct tbl *tbl)
         tbl->part = TBL_PART_LAYOUT;          tbl->part = TBL_PART_LAYOUT;
 }  }
   
   const struct tbl_span *
   tbl_span(const struct tbl *tbl)
   {
   
           assert(tbl);
           return(tbl->last_span);
   }

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.12

CVSweb