[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.42 and 1.52

version 1.42, 2009/07/15 08:20:43 version 1.52, 2009/07/21 13:45:04
Line 27 
Line 27 
 #include "mdoc.h"  #include "mdoc.h"
   
 /* FIXME: macro arguments can be escaped. */  /* FIXME: macro arguments can be escaped. */
 /* FIXME: support more offset/width tokens. */  
   
 #define TTYPE_PROG        0  #define TTYPE_PROG        0
 #define TTYPE_CMD_FLAG    1  #define TTYPE_CMD_FLAG    1
Line 66  const int ttypes[TTYPE_NMAX] = {
Line 65  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 */
         TERMP_UNDER,            /* TTYPE_FILE */          0,                      /* 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 130  static int   termp_ar_pre(DECL_ARGS);
Line 129  static int   termp_ar_pre(DECL_ARGS);
 static  int       termp_bd_pre(DECL_ARGS);  static  int       termp_bd_pre(DECL_ARGS);
 static  int       termp_bf_pre(DECL_ARGS);  static  int       termp_bf_pre(DECL_ARGS);
 static  int       termp_bq_pre(DECL_ARGS);  static  int       termp_bq_pre(DECL_ARGS);
   static  int       termp_br_pre(DECL_ARGS);
 static  int       termp_brq_pre(DECL_ARGS);  static  int       termp_brq_pre(DECL_ARGS);
 static  int       termp_bt_pre(DECL_ARGS);  static  int       termp_bt_pre(DECL_ARGS);
 static  int       termp_cd_pre(DECL_ARGS);  static  int       termp_cd_pre(DECL_ARGS);
Line 154  static int   termp_nd_pre(DECL_ARGS);
Line 154  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 163  static int   termp_rs_pre(DECL_ARGS);
Line 162  static int   termp_rs_pre(DECL_ARGS);
 static  int       termp_rv_pre(DECL_ARGS);  static  int       termp_rv_pre(DECL_ARGS);
 static  int       termp_sh_pre(DECL_ARGS);  static  int       termp_sh_pre(DECL_ARGS);
 static  int       termp_sm_pre(DECL_ARGS);  static  int       termp_sm_pre(DECL_ARGS);
   static  int       termp_sp_pre(DECL_ARGS);
 static  int       termp_sq_pre(DECL_ARGS);  static  int       termp_sq_pre(DECL_ARGS);
 static  int       termp_ss_pre(DECL_ARGS);  static  int       termp_ss_pre(DECL_ARGS);
 static  int       termp_sx_pre(DECL_ARGS);  static  int       termp_sx_pre(DECL_ARGS);
Line 209  static const struct termact termacts[MDOC_MAX] = {
Line 209  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 */
         { termp_pa_pre, NULL }, /* Pa */          { NULL, 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 292  static const struct termact termacts[MDOC_MAX] = {
Line 292  static const struct termact termacts[MDOC_MAX] = {
         { NULL, NULL }, /* En */          { NULL, NULL }, /* En */
         { termp_xx_pre, NULL }, /* Dx */          { termp_xx_pre, NULL }, /* Dx */
         { NULL, NULL }, /* %Q */          { NULL, NULL }, /* %Q */
           { termp_br_pre, NULL }, /* br */
           { termp_sp_pre, NULL }, /* sp */
 };  };
   
 #ifdef __linux__  #ifdef __linux__
Line 360  print_node(DECL_ARGS)
Line 362  print_node(DECL_ARGS)
         npair.flag = 0;          npair.flag = 0;
         npair.count = 0;          npair.count = 0;
   
           /*
            * Note on termpair.  This allows a pre function to set a termp
            * flag that is automatically unset after the body, but before
            * the post function.  Thus, if a pre uses a termpair flag, it
            * must be reapplied in the post for use.
            */
   
         if (MDOC_TEXT != node->type) {          if (MDOC_TEXT != node->type) {
                 if (termacts[node->tok].pre)                  if (termacts[node->tok].pre)
                         if ( ! (*termacts[node->tok].pre)(p, &npair, meta, node))                          if ( ! (*termacts[node->tok].pre)(p, &npair, meta, node))
Line 374  print_node(DECL_ARGS)
Line 383  print_node(DECL_ARGS)
         if (dochild && node->child)          if (dochild && node->child)
                 print_body(p, &npair, meta, node->child);                  print_body(p, &npair, meta, node->child);
   
           p->flags &= ~npair.flag;
   
         /* Post-processing. */          /* Post-processing. */
   
         if (MDOC_TEXT != node->type)          if (MDOC_TEXT != node->type)
Line 382  print_node(DECL_ARGS)
Line 393  print_node(DECL_ARGS)
   
         p->offset = offset;          p->offset = offset;
         p->rmargin = rmargin;          p->rmargin = rmargin;
         p->flags &= ~npair.flag;  
 }  }
   
   
Line 660  fmt_block_vspace(struct termp *p, 
Line 670  fmt_block_vspace(struct termp *p, 
   
         if (arg_hasattr(MDOC_Compact, bl))          if (arg_hasattr(MDOC_Compact, bl))
                 return(1);                  return(1);
           /* XXX - not documented! */
           else if (arg_hasattr(MDOC_Column, bl))
                   return(1);
   
         for (n = node; n; n = n->parent) {          for (n = node; n; n = n->parent) {
                 if (MDOC_BLOCK != n->type)                  if (MDOC_BLOCK != n->type)
Line 783  termp_it_pre(DECL_ARGS)
Line 796  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 796  termp_it_pre(DECL_ARGS)
Line 811  termp_it_pre(DECL_ARGS)
          * while diagonal bodies need two.           * while diagonal bodies need two.
          */           */
   
           p->flags |= TERMP_NOSPACE;
   
         switch (type) {          switch (type) {
         case (MDOC_Diag):          case (MDOC_Diag):
                 term_word(p, "\\ ");                  term_word(p, "\\ \\ ");
                 /* FALLTHROUGH */                  break;
         case (MDOC_Inset):          case (MDOC_Inset):
                 if (MDOC_BODY == node->type)                  if (MDOC_BODY == node->type)
                         p->flags &= ~TERMP_NOSPACE;                          term_word(p, "\\ ");
                 else  
                         p->flags |= TERMP_NOSPACE;  
                 break;                  break;
         default:          default:
                 p->flags |= TERMP_NOSPACE;  
                 break;                  break;
         }          }
   
           p->flags |= TERMP_NOSPACE;
   
         /*          /*
          * Style flags.  Diagnostic heads need TTYPE_DIAG.           * Style flags.  Diagnostic heads need TTYPE_DIAG.
          */           */
Line 856  termp_it_pre(DECL_ARGS)
Line 872  termp_it_pre(DECL_ARGS)
                 break;                  break;
         case (MDOC_Tag):          case (MDOC_Tag):
                 if (MDOC_HEAD == node->type)                  if (MDOC_HEAD == node->type)
                         p->flags |= TERMP_NOBREAK;                          p->flags |= TERMP_NOBREAK | TERMP_TWOSPACE;
                 else                  else
                         p->flags |= TERMP_NOLPAD;                          p->flags |= TERMP_NOLPAD;
   
Line 904  termp_it_pre(DECL_ARGS)
Line 920  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;
                   /*
                    * XXX - this behaviour is not documented: the
                    * right-most column is filled to the right margin.
                    */
                   if (MDOC_HEAD == node->type &&
                                   MDOC_BODY == node->next->type)
                           p->rmargin = p->maxrmargin;
                 break;                  break;
         default:          default:
                 break;                  break;
Line 987  termp_it_post(DECL_ARGS)
Line 1012  termp_it_post(DECL_ARGS)
         assert(-1 != type);          assert(-1 != type);
   
         switch (type) {          switch (type) {
         case (MDOC_Diag):  
                 /* FALLTHROUGH */  
         case (MDOC_Item):          case (MDOC_Item):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case (MDOC_Inset):          case (MDOC_Inset):
Line 1559  termp_bd_pre(DECL_ARGS)
Line 1582  termp_bd_pre(DECL_ARGS)
          * Ew.           * Ew.
          */           */
   
         p->flags |= TERMP_LITERAL;  
         ln = node->child ? node->child->line : 0;          ln = node->child ? node->child->line : 0;
   
         for (node = node->child; node; node = node->next) {          for (node = node->child; node; node = node->next) {
Line 1582  termp_bd_post(DECL_ARGS)
Line 1604  termp_bd_post(DECL_ARGS)
   
         if (MDOC_BODY != node->type)          if (MDOC_BODY != node->type)
                 return;                  return;
   
         term_flushln(p);          term_flushln(p);
         p->flags &= ~TERMP_LITERAL;  
         p->flags |= TERMP_NOSPACE;  
 }  }
   
   
Line 1741  termp_ss_post(DECL_ARGS)
Line 1760  termp_ss_post(DECL_ARGS)
   
 /* ARGSUSED */  /* ARGSUSED */
 static int  static int
 termp_pa_pre(DECL_ARGS)  
 {  
   
         pair->flag |= ttypes[TTYPE_FILE];  
         return(1);  
 }  
   
   
 /* ARGSUSED */  
 static int  
 termp_em_pre(DECL_ARGS)  termp_em_pre(DECL_ARGS)
 {  {
   
Line 1812  static void
Line 1821  static void
 termp_in_post(DECL_ARGS)  termp_in_post(DECL_ARGS)
 {  {
   
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE | ttypes[TTYPE_INCLUDE];
         term_word(p, ">");          term_word(p, ">");
           p->flags &= ~ttypes[TTYPE_INCLUDE];
   
         if (SEC_SYNOPSIS != node->sec)          if (SEC_SYNOPSIS != node->sec)
                 return;                  return;
Line 1827  termp_in_post(DECL_ARGS)
Line 1837  termp_in_post(DECL_ARGS)
          */           */
         if (node->next && MDOC_In != node->next->tok)          if (node->next && MDOC_In != node->next->tok)
                 term_vspace(p);                  term_vspace(p);
   }
   
   
   /* ARGSUSED */
   static int
   termp_sp_pre(DECL_ARGS)
   {
           int              i, len;
   
           if (NULL == node->child) {
                   term_vspace(p);
                   return(0);
           }
   
           len = atoi(node->child->string);
           if (0 == len)
                   term_newln(p);
           for (i = 0; i < len; i++)
                   term_vspace(p);
   
           return(0);
   }
   
   
   /* ARGSUSED */
   static int
   termp_br_pre(DECL_ARGS)
   {
   
           term_newln(p);
           return(1);
 }  }
   
   

Legend:
Removed from v.1.42  
changed lines
  Added in v.1.52

CVSweb