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

Diff for /mandoc/tbl.c between version 1.21 and 1.22

version 1.21, 2011/01/04 15:02:00 version 1.22, 2011/01/25 12:24:27
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
    * Copyright (c) 2011 Ingo Schwarze <schwarze@openbsd.org>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above   * purpose with or without fee is hereby granted, provided that the above
Line 136  tbl_restart(int line, int pos, struct tbl_node *tbl)
Line 137  tbl_restart(int line, int pos, struct tbl_node *tbl)
 }  }
   
 const struct tbl_span *  const struct tbl_span *
 tbl_span(const struct tbl_node *tbl)  tbl_span(struct tbl_node *tbl)
 {  {
           struct tbl_span  *span;
   
         assert(tbl);          assert(tbl);
         return(tbl->last_span);          span = tbl->current_span ? tbl->current_span->next
                                    : tbl->first_span;
           if (span)
                   tbl->current_span = span;
           return(span);
 }  }
   
 void  void

Legend:
Removed from v.1.21  
changed lines
  Added in v.1.22

CVSweb