[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.164 and 1.168

version 1.164, 2010/07/01 15:38:56 version 1.168, 2010/07/02 15:03:14
Line 57  static size_t   a2width(const struct termp *, const ch
Line 57  static size_t   a2width(const struct termp *, const ch
 static  size_t    a2height(const struct termp *, const char *);  static  size_t    a2height(const struct termp *, const char *);
 static  size_t    a2offs(const struct termp *, const char *);  static  size_t    a2offs(const struct termp *, const char *);
   
 static  int       arg_hasattr(int, const struct mdoc_node *);  
 static  int       arg_getattr(int, const struct mdoc_node *);  static  int       arg_getattr(int, const struct mdoc_node *);
 static  void      print_bvspace(struct termp *,  static  void      print_bvspace(struct termp *,
                         const struct mdoc_node *,                          const struct mdoc_node *,
Line 336  print_mdoc_node(DECL_ARGS)
Line 335  print_mdoc_node(DECL_ARGS)
   
         term_fontpopq(p, font);          term_fontpopq(p, font);
   
         if (MDOC_TEXT != n->type &&          if (MDOC_TEXT != n->type && termacts[n->tok].post &&
             termacts[n->tok].post &&                          ! (MDOC_ENDED & n->flags)) {
             ! (MDOC_ENDED & n->flags)) {                  (void)(*termacts[n->tok].post)(p, &npair, m, n);
                 (*termacts[n->tok].post)(p, &npair, m, n);  
   
                 /*                  /*
                  * Explicit end tokens not only call the post                   * Explicit end tokens not only call the post
                  * handler, but also tell the respective block                   * handler, but also tell the respective block
                  * that it must not call the post handler again.                   * that it must not call the post handler again.
                  */                   */
                 if (n->end)                  if (ENDBODY_NOT != n->end)
                         n->pending->flags |= MDOC_ENDED;                          n->pending->flags |= MDOC_ENDED;
   
                 /*                  /*
Line 529  a2offs(const struct termp *p, const char *v)
Line 527  a2offs(const struct termp *p, const char *v)
   
   
 /*  /*
  * Return 1 if an argument has a particular argument value or 0 if it  
  * does not.  See arg_getattr().  
  */  
 static int  
 arg_hasattr(int arg, const struct mdoc_node *n)  
 {  
   
         return(-1 != arg_getattr(arg, n));  
 }  
   
   
 /*  
  * Get the index of an argument in a node's argument list or -1 if it   * Get the index of an argument in a node's argument list or -1 if it
  * does not exist.   * does not exist.
  */   */
Line 574  print_bvspace(struct termp *p, 
Line 560  print_bvspace(struct termp *p, 
   
         term_newln(p);          term_newln(p);
   
         if (MDOC_Bd == bl->tok && bl->data.Bd.comp)          if (MDOC_Bd == bl->tok && bl->data.Bd->comp)
                 return;                  return;
         if (MDOC_Bl == bl->tok && bl->data.Bl.comp)          if (MDOC_Bl == bl->tok && bl->data.Bl->comp)
                 return;                  return;
   
         /* Do not vspace directly after Ss/Sh. */          /* Do not vspace directly after Ss/Sh. */
Line 595  print_bvspace(struct termp *p, 
Line 581  print_bvspace(struct termp *p, 
   
         /* A `-column' does not assert vspace within the list. */          /* A `-column' does not assert vspace within the list. */
   
         if (MDOC_Bl == bl->tok && LIST_column == bl->data.Bl.type)          if (MDOC_Bl == bl->tok && LIST_column == bl->data.Bl->type)
                 if (n->prev && MDOC_It == n->prev->tok)                  if (n->prev && MDOC_It == n->prev->tok)
                         return;                          return;
   
         /* A `-diag' without body does not vspace. */          /* A `-diag' without body does not vspace. */
   
         if (MDOC_Bl == bl->tok && LIST_diag == bl->data.Bl.type)          if (MDOC_Bl == bl->tok && LIST_diag == bl->data.Bl->type)
                 if (n->prev && MDOC_It == n->prev->tok) {                  if (n->prev && MDOC_It == n->prev->tok) {
                         assert(n->prev->body);                          assert(n->prev->body);
                         if (NULL == n->prev->body->child)                          if (NULL == n->prev->body->child)
Line 655  termp_it_pre(DECL_ARGS)
Line 641  termp_it_pre(DECL_ARGS)
         }          }
   
         bl = n->parent->parent->parent;          bl = n->parent->parent->parent;
         type = bl->data.Bl.type;          assert(bl->data.Bl);
           type = bl->data.Bl->type;
   
         /*          /*
          * First calculate width and offset.  This is pretty easy unless           * First calculate width and offset.  This is pretty easy unless
Line 665  termp_it_pre(DECL_ARGS)
Line 652  termp_it_pre(DECL_ARGS)
   
         width = offset = 0;          width = offset = 0;
   
         if (bl->data.Bl.offs)          if (bl->data.Bl->offs)
                 offset = a2offs(p, bl->data.Bl.offs);                  offset = a2offs(p, bl->data.Bl->offs);
   
         switch (type) {          switch (type) {
         case (LIST_column):          case (LIST_column):
Line 716  termp_it_pre(DECL_ARGS)
Line 703  termp_it_pre(DECL_ARGS)
                 width = a2width(p, bl->args->argv[col].value[i]) + dcol;                  width = a2width(p, bl->args->argv[col].value[i]) + dcol;
                 break;                  break;
         default:          default:
                 if (NULL == bl->data.Bl.width)                  if (NULL == bl->data.Bl->width)
                         break;                          break;
   
                 /*                  /*
Line 724  termp_it_pre(DECL_ARGS)
Line 711  termp_it_pre(DECL_ARGS)
                  * number for buffering single arguments.  See the above                   * number for buffering single arguments.  See the above
                  * handling for column for how this changes.                   * handling for column for how this changes.
                  */                   */
                 assert(bl->data.Bl.width);                  assert(bl->data.Bl->width);
                 width = a2width(p, bl->data.Bl.width) + term_len(p, 2);                  width = a2width(p, bl->data.Bl->width) + term_len(p, 2);
                 break;                  break;
         }          }
   
Line 987  termp_it_post(DECL_ARGS)
Line 974  termp_it_post(DECL_ARGS)
         if (MDOC_BLOCK == n->type)          if (MDOC_BLOCK == n->type)
                 return;                  return;
   
         type = n->parent->parent->parent->data.Bl.type;          type = n->parent->parent->parent->data.Bl->type;
   
         switch (type) {          switch (type) {
         case (LIST_item):          case (LIST_item):
Line 1141  termp_an_post(DECL_ARGS)
Line 1128  termp_an_post(DECL_ARGS)
                 return;                  return;
         }          }
   
         if (arg_hasattr(MDOC_Split, n)) {          if (AUTH_split == n->data.An.auth) {
                 p->flags &= ~TERMP_NOSPLIT;                  p->flags &= ~TERMP_NOSPLIT;
                 p->flags |= TERMP_SPLIT;                  p->flags |= TERMP_SPLIT;
         } else {          } else if (AUTH_nosplit == n->data.An.auth) {
                 p->flags &= ~TERMP_SPLIT;                  p->flags &= ~TERMP_SPLIT;
                 p->flags |= TERMP_NOSPLIT;                  p->flags |= TERMP_NOSPLIT;
         }          }
Line 1648  termp_bd_pre(DECL_ARGS)
Line 1635  termp_bd_pre(DECL_ARGS)
         } else if (MDOC_HEAD == n->type)          } else if (MDOC_HEAD == n->type)
                 return(0);                  return(0);
   
         if (n->data.Bd.offs)          assert(n->data.Bd);
                 p->offset += a2offs(p, n->data.Bd.offs);          if (n->data.Bd->offs)
                   p->offset += a2offs(p, n->data.Bd->offs);
   
         /*          /*
          * If -ragged or -filled are specified, the block does nothing           * If -ragged or -filled are specified, the block does nothing
Line 1659  termp_bd_pre(DECL_ARGS)
Line 1647  termp_bd_pre(DECL_ARGS)
          * lines are allowed.           * lines are allowed.
          */           */
   
         if (DISP_literal != n->data.Bd.type &&          if (DISP_literal != n->data.Bd->type &&
                         DISP_unfilled != n->data.Bd.type)                          DISP_unfilled != n->data.Bd->type)
                 return(1);                  return(1);
   
         tabwidth = p->tabwidth;          tabwidth = p->tabwidth;
Line 1697  termp_bd_post(DECL_ARGS)
Line 1685  termp_bd_post(DECL_ARGS)
         rm = p->rmargin;          rm = p->rmargin;
         rmax = p->maxrmargin;          rmax = p->maxrmargin;
   
         if (DISP_literal == n->data.Bd.type ||          assert(n->data.Bd);
                         DISP_unfilled == n->data.Bd.type)          if (DISP_literal == n->data.Bd->type ||
                           DISP_unfilled == n->data.Bd->type)
                 p->rmargin = p->maxrmargin = TERM_MAXMARGIN;                  p->rmargin = p->maxrmargin = TERM_MAXMARGIN;
   
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
Line 2055  termp_fo_post(DECL_ARGS)
Line 2044  termp_fo_post(DECL_ARGS)
 static int  static int
 termp_bf_pre(DECL_ARGS)  termp_bf_pre(DECL_ARGS)
 {  {
         const struct mdoc_node  *nn;  
   
         if (MDOC_HEAD == n->type)          if (MDOC_HEAD == n->type)
                 return(0);                  return(0);
         else if (MDOC_BLOCK != n->type)          else if (MDOC_BLOCK != n->type)
                 return(1);                  return(1);
   
         if (NULL == (nn = n->head->child)) {          assert(n->data.Bf);
                 if (arg_hasattr(MDOC_Emphasis, n))  
                         term_fontpush(p, TERMFONT_UNDER);  
                 else if (arg_hasattr(MDOC_Symbolic, n))  
                         term_fontpush(p, TERMFONT_BOLD);  
                 else  
                         term_fontpush(p, TERMFONT_NONE);  
   
                 return(1);          if (FONT_Em == n->data.Bf->font)
         }  
   
         assert(MDOC_TEXT == nn->type);  
         if (0 == strcmp("Em", nn->string))  
                 term_fontpush(p, TERMFONT_UNDER);                  term_fontpush(p, TERMFONT_UNDER);
         else if (0 == strcmp("Sy", nn->string))          else if (FONT_Sy == n->data.Bf->font)
                 term_fontpush(p, TERMFONT_BOLD);                  term_fontpush(p, TERMFONT_BOLD);
         else          else
                 term_fontpush(p, TERMFONT_NONE);                  term_fontpush(p, TERMFONT_NONE);
   
         return(1);          return(1);
Line 2168  termp_bk_pre(DECL_ARGS)
Line 2146  termp_bk_pre(DECL_ARGS)
   
         switch (n->type) {          switch (n->type) {
         case (MDOC_BLOCK):          case (MDOC_BLOCK):
                 return(1);                  break;
         case (MDOC_HEAD):          case (MDOC_HEAD):
                 return(0);                  return(0);
         case (MDOC_BODY):          case (MDOC_BODY):
                 p->flags |= TERMP_PREKEEP;                  p->flags |= TERMP_PREKEEP;
                 return(1);                  break;
         default:          default:
                 abort();                  abort();
                   /* NOTREACHED */
         }          }
   
           return(1);
 }  }
   
   

Legend:
Removed from v.1.164  
changed lines
  Added in v.1.168

CVSweb