[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.131 and 1.133

version 1.131, 2012/07/13 14:19:49 version 1.133, 2012/07/16 21:59:40
Line 445  pre_sp(DECL_ARGS)
Line 445  pre_sp(DECL_ARGS)
         int              neg;          int              neg;
   
         if ((NULL == n->prev && n->parent)) {          if ((NULL == n->prev && n->parent)) {
                 if (MAN_SS == n->parent->tok)                  switch (n->parent->tok) {
                   case (MAN_SH):
                           /* FALLTHROUGH */
                   case (MAN_SS):
                           /* FALLTHROUGH */
                   case (MAN_PP):
                           /* FALLTHROUGH */
                   case (MAN_LP):
                           /* FALLTHROUGH */
                   case (MAN_P):
                           /* FALLTHROUGH */
                         return(0);                          return(0);
                 if (MAN_SH == n->parent->tok)                  default:
                         return(0);                          break;
                   }
         }          }
   
         neg = 0;          neg = 0;
Line 760  pre_SS(DECL_ARGS)
Line 771  pre_SS(DECL_ARGS)
                 break;                  break;
         case (MAN_HEAD):          case (MAN_HEAD):
                 term_fontrepl(p, TERMFONT_BOLD);                  term_fontrepl(p, TERMFONT_BOLD);
                 p->offset = term_len(p, p->defindent/2);                  p->offset = term_len(p, 3);
                 break;                  break;
         case (MAN_BODY):          case (MAN_BODY):
                 p->offset = mt->offset;                  p->offset = mt->offset;

Legend:
Removed from v.1.131  
changed lines
  Added in v.1.133

CVSweb