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

Diff for /mandoc/mdoc_term.c between version 1.178 and 1.179

version 1.178, 2010/07/26 22:35:59 version 1.179, 2010/07/27 08:38:04
Line 1621  termp_fa_pre(DECL_ARGS)
Line 1621  termp_fa_pre(DECL_ARGS)
 static int  static int
 termp_bd_pre(DECL_ARGS)  termp_bd_pre(DECL_ARGS)
 {  {
         size_t                   tabwidth;          size_t                   tabwidth, rm, rmax;
         size_t                   rm, rmax;  
         const struct mdoc_node  *nn;          const struct mdoc_node  *nn;
   
         if (MDOC_BLOCK == n->type) {          if (MDOC_BLOCK == n->type) {
Line 1654  termp_bd_pre(DECL_ARGS)
Line 1653  termp_bd_pre(DECL_ARGS)
         p->rmargin = p->maxrmargin = TERM_MAXMARGIN;          p->rmargin = p->maxrmargin = TERM_MAXMARGIN;
   
         for (nn = n->child; nn; nn = nn->next) {          for (nn = n->child; nn; nn = nn->next) {
                 p->flags |= TERMP_NOSPACE;                  if (nn->prev && nn->prev->line < nn->line)
                           term_newln(p);
                 print_mdoc_node(p, pair, m, nn);                  print_mdoc_node(p, pair, m, nn);
                 if (NULL == nn->prev ||  
                     nn->prev->line < nn->line ||  
                     NULL == nn->next)  
                         term_flushln(p);  
         }          }
   
         p->tabwidth = tabwidth;          p->tabwidth = tabwidth;

Legend:
Removed from v.1.178  
changed lines
  Added in v.1.179

CVSweb