[BACK]Return to tbl_data.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / mandoc

Diff for /src/usr.bin/mandoc/tbl_data.c between version 1.20 and 1.21

version 1.20, 2015/01/21 00:45:16 version 1.21, 2015/01/27 05:20:30
Line 1 
Line 1 
 /*      $OpenBSD$ */  /*      $OpenBSD$ */
 /*  /*
  * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2011 Ingo Schwarze <schwarze@openbsd.org>   * Copyright (c) 2011, 2015 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 188 
Line 188 
         dp->opts = &tbl->opts;          dp->opts = &tbl->opts;
         dp->layout = rp;          dp->layout = rp;
         dp->head = tbl->first_head;          dp->head = tbl->first_head;
           dp->prev = tbl->last_span;
   
         if (tbl->last_span) {          if (dp->prev == NULL) {
                 tbl->last_span->next = dp;                  tbl->first_span = dp;
                 tbl->last_span = dp;  
         } else {  
                 tbl->last_span = tbl->first_span = dp;  
                 tbl->current_span = NULL;                  tbl->current_span = NULL;
                 dp->flags |= TBL_SPAN_FIRST;                  dp->flags |= TBL_SPAN_FIRST;
         }          } else
                   dp->prev->next = dp;
           tbl->last_span = dp;
   
         return(dp);          return(dp);
 }  }

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