[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.56 and 1.59

version 1.56, 2009/07/21 15:39:04 version 1.59, 2009/07/23 09:40:25
Line 66  const int ttypes[TTYPE_NMAX] = {
Line 66  const int ttypes[TTYPE_NMAX] = {
         TERMP_UNDER,            /* TTYPE_FUNC_ARG */          TERMP_UNDER,            /* TTYPE_FUNC_ARG */
         TERMP_UNDER,            /* TTYPE_LINK */          TERMP_UNDER,            /* TTYPE_LINK */
         TERMP_BOLD,             /* TTYPE_SSECTION */          TERMP_BOLD,             /* TTYPE_SSECTION */
         0,                      /* TTYPE_FILE */          TERMP_UNDER,            /* TTYPE_FILE */
         TERMP_UNDER,            /* TTYPE_EMPH */          TERMP_UNDER,            /* TTYPE_EMPH */
         TERMP_BOLD,             /* TTYPE_CONFIG */          TERMP_BOLD,             /* TTYPE_CONFIG */
         TERMP_BOLD,             /* TTYPE_CMD */          TERMP_BOLD,             /* TTYPE_CMD */
Line 155  static int   termp_nd_pre(DECL_ARGS);
Line 155  static int   termp_nd_pre(DECL_ARGS);
 static  int       termp_nm_pre(DECL_ARGS);  static  int       termp_nm_pre(DECL_ARGS);
 static  int       termp_ns_pre(DECL_ARGS);  static  int       termp_ns_pre(DECL_ARGS);
 static  int       termp_op_pre(DECL_ARGS);  static  int       termp_op_pre(DECL_ARGS);
   static  int       termp_pa_pre(DECL_ARGS);
 static  int       termp_pf_pre(DECL_ARGS);  static  int       termp_pf_pre(DECL_ARGS);
 static  int       termp_pp_pre(DECL_ARGS);  static  int       termp_pp_pre(DECL_ARGS);
 static  int       termp_pq_pre(DECL_ARGS);  static  int       termp_pq_pre(DECL_ARGS);
Line 210  static const struct termact termacts[MDOC_MAX] = {
Line 211  static const struct termact termacts[MDOC_MAX] = {
         { termp_nm_pre, NULL }, /* Nm */          { termp_nm_pre, NULL }, /* Nm */
         { termp_op_pre, termp_op_post }, /* Op */          { termp_op_pre, termp_op_post }, /* Op */
         { NULL, NULL }, /* Ot */          { NULL, NULL }, /* Ot */
         { NULL, NULL }, /* Pa */          { termp_pa_pre, NULL }, /* Pa */
         { termp_rv_pre, NULL }, /* Rv */          { termp_rv_pre, NULL }, /* Rv */
         { NULL, NULL }, /* St */          { NULL, NULL }, /* St */
         { termp_va_pre, NULL }, /* Va */          { termp_va_pre, NULL }, /* Va */
Line 669  fmt_block_vspace(struct termp *p, 
Line 670  fmt_block_vspace(struct termp *p, 
   
         term_newln(p);          term_newln(p);
   
         if (arg_hasattr(MDOC_Compact, bl))          if (MDOC_Bl == bl->tok && arg_hasattr(MDOC_Compact, bl))
                 return;                  return;
   
         /*          /*
Line 694  fmt_block_vspace(struct termp *p, 
Line 695  fmt_block_vspace(struct termp *p, 
          * within the list.           * within the list.
          */           */
   
         if (arg_hasattr(MDOC_Column, bl))          if (MDOC_Bl == bl->tok && arg_hasattr(MDOC_Column, bl))
                 if (node->prev && MDOC_It == node->prev->tok)                  if (node->prev && MDOC_It == node->prev->tok)
                         return;                          return;
   
Line 702  fmt_block_vspace(struct termp *p, 
Line 703  fmt_block_vspace(struct termp *p, 
          * XXX - not documented: a `-diag' without a body does not           * XXX - not documented: a `-diag' without a body does not
          * assert a vspace prior to the next element.           * assert a vspace prior to the next element.
          */           */
         if (arg_hasattr(MDOC_Diag, bl))          if (MDOC_Bl == bl->tok && arg_hasattr(MDOC_Diag, bl))
                 if (node->prev && MDOC_It == node->prev->tok) {                  if (node->prev && MDOC_It == node->prev->tok) {
                         assert(node->prev->body);                          assert(node->prev->body);
                         if (NULL == node->prev->body->child)                          if (NULL == node->prev->body->child)
Line 781  termp_it_pre(DECL_ARGS)
Line 782  termp_it_pre(DECL_ARGS)
         case (MDOC_Column):          case (MDOC_Column):
                 if (MDOC_BODY == node->type)                  if (MDOC_BODY == node->type)
                         break;                          break;
                 for (i = 0, n = node->prev; n; n = n->prev, i++)                  /*
                    * Work around groff's column handling.  The offset is
                    * equal to the sum of all widths leading to the current
                    * column (plus the -offset value).  If this column
                    * exceeds the stated number of columns, the width is
                    * set as 0, else it's the stated column width (later
                    * the 0 will be adjusted to default 10 or, if in the
                    * last column case, set to stretch to the margin).
                    */
                   for (i = 0, n = node->prev; n && n &&
                                   i < (int)bl->args[vals[2]].argv->sz;
                                   n = n->prev, i++)
                         offset += arg_width                          offset += arg_width
                                 (&bl->args->argv[vals[2]], i);                                  (&bl->args->argv[vals[2]], i);
                 assert(i < (int)bl->args->argv[vals[2]].sz);  
                 width = arg_width(&bl->args->argv[vals[2]], i);                  /* Whether exceeds maximum column. */
                   if (i < (int)bl->args[vals[2]].argv->sz)
                           width = arg_width(&bl->args->argv[vals[2]], i);
                   else
                           width = 0;
   
                 if (vals[1] >= 0)                  if (vals[1] >= 0)
                         offset += arg_offset(&bl->args->argv[vals[1]]);                          offset += arg_offset(&bl->args->argv[vals[1]]);
                 break;                  break;
Line 891  termp_it_pre(DECL_ARGS)
Line 908  termp_it_pre(DECL_ARGS)
                 else                  else
                         p->flags |= TERMP_NOLPAD;                          p->flags |= TERMP_NOLPAD;
   
                 if (MDOC_HEAD == node->type)                  if (MDOC_HEAD != node->type)
                           break;
   
                   /*
                    * This is ugly.  If `-hang' is specified and the body
                    * is a `Bl' or `Bd', then we want basically to nullify
                    * the "overstep" effect in term_flushln() and treat
                    * this as a `-ohang' list instead.
                    */
                   if (node->next->child &&
                                   (MDOC_Bl == node->next->child->tok ||
                                    MDOC_Bd == node->next->child->tok)) {
                           p->flags &= ~TERMP_NOBREAK;
                           p->flags &= ~TERMP_NOLPAD;
                   } else
                         p->flags |= TERMP_HANG;                          p->flags |= TERMP_HANG;
                 break;                  break;
         case (MDOC_Tag):          case (MDOC_Tag):
Line 933  termp_it_pre(DECL_ARGS)
Line 964  termp_it_pre(DECL_ARGS)
         p->offset += offset;          p->offset += offset;
   
         switch (type) {          switch (type) {
           case (MDOC_Hang):
                   /*
                    * Same stipulation as above, regarding `-hang'.  We
                    * don't want to recalculate rmargin and offsets when
                    * using `Bd' or `Bl' within `-hang' overstep lists.
                    */
                   if (MDOC_HEAD == node->type && node->next->child &&
                                   (MDOC_Bl == node->next->child->tok ||
                                    MDOC_Bd == node->next->child->tok))
                           break;
                   /* FALLTHROUGH */
         case (MDOC_Bullet):          case (MDOC_Bullet):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case (MDOC_Dash):          case (MDOC_Dash):
Line 941  termp_it_pre(DECL_ARGS)
Line 983  termp_it_pre(DECL_ARGS)
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case (MDOC_Hyphen):          case (MDOC_Hyphen):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case (MDOC_Hang):  
                 /* FALLTHROUGH */  
         case (MDOC_Tag):          case (MDOC_Tag):
                 assert(width);                  assert(width);
                 if (MDOC_HEAD == node->type)                  if (MDOC_HEAD == node->type)
Line 1729  termp_sq_post(DECL_ARGS)
Line 1769  termp_sq_post(DECL_ARGS)
                 return;                  return;
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         term_word(p, "\\(aq");          term_word(p, "\\(aq");
   }
   
   
   /* ARGSUSED */
   static int
   termp_pa_pre(DECL_ARGS)
   {
   
           pair->flag |= ttypes[TTYPE_FILE];
           return(1);
 }  }
   
   

Legend:
Removed from v.1.56  
changed lines
  Added in v.1.59

CVSweb