[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.100 and 1.103

version 1.100, 2011/01/23 14:54:21 version 1.103, 2011/02/09 09:52:47
Line 212  print_bvspace(struct termp *p, const struct man_node *
Line 212  print_bvspace(struct termp *p, const struct man_node *
 {  {
         term_newln(p);          term_newln(p);
   
           if (n->body && n->body->child && MAN_TBL == n->body->child->type)
                   return;
   
         if (NULL == n->prev)          if (NULL == n->prev)
                 return;                  return;
   
Line 892  print_man_node(DECL_ARGS)
Line 895  print_man_node(DECL_ARGS)
   
                 if (MAN_EOS & n->flags)                  if (MAN_EOS & n->flags)
                         p->flags |= TERMP_SENTENCE;                          p->flags |= TERMP_SENTENCE;
                   return;
           case (MAN_EQN):
                   term_word(p, n->eqn->data);
                 return;                  return;
         case (MAN_TBL):          case (MAN_TBL):
                 /*                  /*

Legend:
Removed from v.1.100  
changed lines
  Added in v.1.103

CVSweb