[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.48 and 1.49

version 1.48, 2009/07/20 15:05:34 version 1.49, 2009/07/20 19:30:46
Line 798  termp_it_pre(DECL_ARGS)
Line 798  termp_it_pre(DECL_ARGS)
                 if (0 == width)                  if (0 == width)
                         width = 8;                          width = 8;
                 break;                  break;
           case (MDOC_Column):
                   /* FALLTHROUGH */
         case (MDOC_Tag):          case (MDOC_Tag):
                 if (0 == width)                  if (0 == width)
                         width = 10;                          width = 10;
Line 916  termp_it_pre(DECL_ARGS)
Line 918  termp_it_pre(DECL_ARGS)
         case (MDOC_Hang):          case (MDOC_Hang):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case (MDOC_Tag):          case (MDOC_Tag):
                   assert(width);
                 if (MDOC_HEAD == node->type)                  if (MDOC_HEAD == node->type)
                         p->rmargin = p->offset + width;                          p->rmargin = p->offset + width;
                 else                  else
                         p->offset += width;                          p->offset += width;
                 break;                  break;
         case (MDOC_Column):          case (MDOC_Column):
                   assert(width);
                 p->rmargin = p->offset + width;                  p->rmargin = p->offset + width;
                 break;                  break;
         default:          default:

Legend:
Removed from v.1.48  
changed lines
  Added in v.1.49

CVSweb