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

Diff for /mandoc/tree.c between version 1.33 and 1.34

version 1.33, 2011/02/06 21:44:36 version 1.34, 2011/02/06 22:02:58
Line 266  print_span(const struct tbl_span *sp, int indent)
Line 266  print_span(const struct tbl_span *sp, int indent)
         for (i = 0; i < indent; i++)          for (i = 0; i < indent; i++)
                 putchar('\t');                  putchar('\t');
   
         printf("tbl: ");  
   
         switch (sp->pos) {          switch (sp->pos) {
         case (TBL_SPAN_HORIZ):          case (TBL_SPAN_HORIZ):
                 putchar('-');                  putchar('-');
Line 300  print_span(const struct tbl_span *sp, int indent)
Line 298  print_span(const struct tbl_span *sp, int indent)
                 if (NULL == dp->layout)                  if (NULL == dp->layout)
                         putchar('*');                          putchar('*');
                 putchar(']');                  putchar(']');
                 if (dp->next)                  putchar(' ');
                         putchar(' ');  
         }          }
   
           printf("(tbl) %d:1", sp->line);
 }  }

Legend:
Removed from v.1.33  
changed lines
  Added in v.1.34

CVSweb