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

Diff for /mandoc/tree.c between version 1.61 and 1.62

version 1.61, 2015/02/03 18:37:59 version 1.62, 2015/02/05 00:14:13
Line 162  print_mdoc(const struct mdoc_node *n, int indent)
Line 162  print_mdoc(const struct mdoc_node *n, int indent)
                 putchar(' ');                  putchar(' ');
                 if (MDOC_LINE & n->flags)                  if (MDOC_LINE & n->flags)
                         putchar('*');                          putchar('*');
                 printf("%d:%d", n->line, n->pos + 1);                  printf("%d:%d\n", n->line, n->pos + 1);
                 if (n->lastline != n->line)  
                         printf("-%d", n->lastline);  
                 putchar('\n');  
         }          }
   
         if (n->eqn)          if (n->eqn)

Legend:
Removed from v.1.61  
changed lines
  Added in v.1.62

CVSweb