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

Diff for /mandoc/man_term.c between version 1.206 and 1.207

version 1.206, 2017/06/17 01:27:05 version 1.207, 2017/06/17 13:06:16
Line 872  print_man_node(DECL_ARGS)
Line 872  print_man_node(DECL_ARGS)
                  * before printing the line's data.                   * before printing the line's data.
                  */                   */
                 if (*n->string == '\0') {                  if (*n->string == '\0') {
                         term_vspace(p);                          if (p->flags & TERMP_NONEWLINE)
                                   term_newln(p);
                           else
                                   term_vspace(p);
                         return;                          return;
                 } else if (*n->string == ' ' && n->flags & NODE_LINE &&                  } else if (*n->string == ' ' && n->flags & NODE_LINE &&
                     (p->flags & TERMP_NONEWLINE) == 0)                      (p->flags & TERMP_NONEWLINE) == 0)

Legend:
Removed from v.1.206  
changed lines
  Added in v.1.207

CVSweb