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

Diff for /mandoc/tree.c between version 1.48 and 1.49

version 1.48, 2013/05/18 17:08:43 version 1.49, 2013/09/15 17:33:57
Line 159  print_mdoc(const struct mdoc_node *n, int indent)
Line 159  print_mdoc(const struct mdoc_node *n, int indent)
                         if (argv[i].sz > 0)                          if (argv[i].sz > 0)
                                 printf(" ]");                                  printf(" ]");
                 }                  }
   
                 printf(" %d:%d\n", n->line, n->pos);                  putchar(' ');
                   if (MDOC_LINE & n->flags)
                           putchar('*');
                   printf("%d:%d\n", n->line, n->pos);
         }          }
   
         if (n->child)          if (n->child)

Legend:
Removed from v.1.48  
changed lines
  Added in v.1.49

CVSweb