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

Diff for /mandoc/tbl_data.c between version 1.16 and 1.17

version 1.16, 2011/01/10 14:40:30 version 1.17, 2011/01/10 14:56:06
Line 140  tbl_cdata(struct tbl_node *tbl, int ln, const char *p)
Line 140  tbl_cdata(struct tbl_node *tbl, int ln, const char *p)
         pos = 0;          pos = 0;
   
         dat = tbl->last_span->last;          dat = tbl->last_span->last;
         dat->pos = TBL_DATA_DATA;  
   
         if (p[pos] == 'T' && p[pos + 1] == '}') {          if (p[pos] == 'T' && p[pos + 1] == '}') {
                 pos += 2;                  pos += 2;
Line 155  tbl_cdata(struct tbl_node *tbl, int ln, const char *p)
Line 154  tbl_cdata(struct tbl_node *tbl, int ln, const char *p)
   
                 /* Fallthrough: T} is part of a word. */                  /* Fallthrough: T} is part of a word. */
         }          }
   
           dat->pos = TBL_DATA_DATA;
   
         if (dat->string) {          if (dat->string) {
                 sz = strlen(p) + strlen(dat->string) + 2;                  sz = strlen(p) + strlen(dat->string) + 2;

Legend:
Removed from v.1.16  
changed lines
  Added in v.1.17

CVSweb