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

Diff for /mandoc/tbl_term.c between version 1.40 and 1.42

version 1.40, 2015/03/06 15:48:53 version 1.42, 2015/10/06 18:32:20
Line 47  static size_t
Line 47  static size_t
 term_tbl_strlen(const char *p, void *arg)  term_tbl_strlen(const char *p, void *arg)
 {  {
   
         return(term_strlen((const struct termp *)arg, p));          return term_strlen((const struct termp *)arg, p);
 }  }
   
 static size_t  static size_t
 term_tbl_len(size_t sz, void *arg)  term_tbl_len(size_t sz, void *arg)
 {  {
   
         return(term_len((const struct termp *)arg, sz));          return term_len((const struct termp *)arg, sz);
 }  }
   
 void  void
Line 303  tbl_data(struct termp *tp, const struct tbl_opts *opts
Line 303  tbl_data(struct termp *tp, const struct tbl_opts *opts
                 break;                  break;
         default:          default:
                 abort();                  abort();
                 /* NOTREACHED */  
         }          }
 }  }
   

Legend:
Removed from v.1.40  
changed lines
  Added in v.1.42

CVSweb