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

Diff for /mandoc/tree.c between version 1.78 and 1.79

version 1.78, 2018/04/11 17:11:13 version 1.79, 2018/08/14 01:27:48
Line 289  print_man(const struct roff_node *n, int indent)
Line 289  print_man(const struct roff_node *n, int indent)
                 if (NODE_LINE & n->flags)                  if (NODE_LINE & n->flags)
                         putchar('*');                          putchar('*');
                 printf("%d:%d", n->line, n->pos + 1);                  printf("%d:%d", n->line, n->pos + 1);
                   if (NODE_DELIMC & n->flags)
                           putchar(')');
                 if (NODE_EOS & n->flags)                  if (NODE_EOS & n->flags)
                         putchar('.');                          putchar('.');
                 putchar('\n');                  putchar('\n');

Legend:
Removed from v.1.78  
changed lines
  Added in v.1.79

CVSweb