[BACK]Return to term.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/term.c between version 1.45 and 1.68

version 1.45, 2009/03/08 13:57:07 version 1.68, 2009/03/22 21:19:34
Line 1 
Line 1 
 /* $Id$ */  /* $Id$ */
 /*  /*
  * Copyright (c) 2009 Kristaps Dzonsons <kristaps@kth.se>   * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@openbsd.org>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the   * purpose with or without fee is hereby granted, provided that the
Line 16 
Line 16 
  * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR   * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  * PERFORMANCE OF THIS SOFTWARE.   * PERFORMANCE OF THIS SOFTWARE.
  */   */
   #include <sys/types.h>
   
 #include <assert.h>  #include <assert.h>
 #include <ctype.h>  #include <ctype.h>
 #include <err.h>  #include <err.h>
Line 51 
Line 53 
 #define TTYPE_SYMB        16  #define TTYPE_SYMB        16
 #define TTYPE_SYMBOL      17  #define TTYPE_SYMBOL      17
 #define TTYPE_DIAG        18  #define TTYPE_DIAG        18
 #define TTYPE_NMAX        19  #define TTYPE_LINK_ANCHOR 19
   #define TTYPE_LINK_TEXT   20
   #define TTYPE_REF_JOURNAL 21
   #define TTYPE_NMAX        22
   
 /*  /*
  * These define "styles" for element types, like command arguments or   * These define "styles" for element types, like command arguments or
Line 62 
Line 67 
 /* TODO: abstract this into mdocterm.c. */  /* TODO: abstract this into mdocterm.c. */
   
 const   int ttypes[TTYPE_NMAX] = {  const   int ttypes[TTYPE_NMAX] = {
         TERMP_BOLD,             /* TTYPE_PROG */          TERMP_BOLD,             /* TTYPE_PROG */
         TERMP_BOLD,             /* TTYPE_CMD_FLAG */          TERMP_BOLD,             /* TTYPE_CMD_FLAG */
         TERMP_UNDERLINE,        /* TTYPE_CMD_ARG */          TERMP_UNDER,            /* TTYPE_CMD_ARG */
         TERMP_BOLD,             /* TTYPE_SECTION */          TERMP_BOLD,             /* TTYPE_SECTION */
         TERMP_BOLD,             /* TTYPE_FUNC_DECL */          TERMP_BOLD,             /* TTYPE_FUNC_DECL */
         TERMP_UNDERLINE,        /* TTYPE_VAR_DECL */          TERMP_UNDER,            /* TTYPE_VAR_DECL */
         TERMP_UNDERLINE,        /* TTYPE_FUNC_TYPE */          TERMP_UNDER,            /* TTYPE_FUNC_TYPE */
         TERMP_BOLD,             /* TTYPE_FUNC_NAME */          TERMP_BOLD,             /* TTYPE_FUNC_NAME */
         TERMP_UNDERLINE,        /* TTYPE_FUNC_ARG */          TERMP_UNDER,            /* TTYPE_FUNC_ARG */
         TERMP_UNDERLINE,        /* TTYPE_LINK */          TERMP_UNDER,            /* TTYPE_LINK */
         TERMP_BOLD,             /* TTYPE_SSECTION */          TERMP_BOLD,             /* TTYPE_SSECTION */
         TERMP_UNDERLINE,        /* TTYPE_FILE */          TERMP_UNDER,            /* TTYPE_FILE */
         TERMP_UNDERLINE,        /* TTYPE_EMPH */          TERMP_UNDER,            /* TTYPE_EMPH */
         TERMP_BOLD,             /* TTYPE_CONFIG */          TERMP_BOLD,             /* TTYPE_CONFIG */
         TERMP_BOLD,             /* TTYPE_CMD */          TERMP_BOLD,             /* TTYPE_CMD */
         TERMP_BOLD,             /* TTYPE_INCLUDE */          TERMP_BOLD,             /* TTYPE_INCLUDE */
         TERMP_BOLD,             /* TTYPE_SYMB */          TERMP_BOLD,             /* TTYPE_SYMB */
         TERMP_BOLD,             /* TTYPE_SYMBOL */          TERMP_BOLD,             /* TTYPE_SYMBOL */
         TERMP_BOLD              /* TTYPE_DIAG */          TERMP_BOLD,             /* TTYPE_DIAG */
           TERMP_UNDER,            /* TTYPE_LINK_ANCHOR */
           TERMP_BOLD,             /* TTYPE_LINK_TEXT */
           TERMP_UNDER             /* TTYPE_REF_JOURNAL */
 };  };
   
 static  int               arg_hasattr(int, const struct mdoc_node *);  static  int               arg_hasattr(int, const struct mdoc_node *);
   static  int               arg_getattrs(const int *, int *, size_t,
                                   const struct mdoc_node *);
 static  int               arg_getattr(int, const struct mdoc_node *);  static  int               arg_getattr(int, const struct mdoc_node *);
 static  size_t            arg_offset(const struct mdoc_argv *);  static  size_t            arg_offset(const struct mdoc_argv *);
 static  size_t            arg_width(const struct mdoc_argv *);  static  size_t            arg_width(const struct mdoc_argv *, int);
 static  int               arg_listtype(const struct mdoc_node *);  static  int               arg_listtype(const struct mdoc_node *);
   static  int               fmt_block_vspace(struct termp *,
                                   const struct mdoc_node *,
                                   const struct mdoc_node *);
   
 /*  /*
  * What follows describes prefix and postfix operations for the abstract   * What follows describes prefix and postfix operations for the abstract
Line 112  DECL_PREPOST(termp__t);
Line 125  DECL_PREPOST(termp__t);
 DECL_PREPOST(termp_aq);  DECL_PREPOST(termp_aq);
 DECL_PREPOST(termp_bd);  DECL_PREPOST(termp_bd);
 DECL_PREPOST(termp_bq);  DECL_PREPOST(termp_bq);
   DECL_PREPOST(termp_brq);
 DECL_PREPOST(termp_d1);  DECL_PREPOST(termp_d1);
 DECL_PREPOST(termp_dq);  DECL_PREPOST(termp_dq);
 DECL_PREPOST(termp_fd);  DECL_PREPOST(termp_fd);
Line 120  DECL_PREPOST(termp_fo);
Line 134  DECL_PREPOST(termp_fo);
 DECL_PREPOST(termp_ft);  DECL_PREPOST(termp_ft);
 DECL_PREPOST(termp_in);  DECL_PREPOST(termp_in);
 DECL_PREPOST(termp_it);  DECL_PREPOST(termp_it);
   DECL_PREPOST(termp_lb);
 DECL_PREPOST(termp_op);  DECL_PREPOST(termp_op);
 DECL_PREPOST(termp_pf);  DECL_PREPOST(termp_pf);
 DECL_PREPOST(termp_pq);  DECL_PREPOST(termp_pq);
Line 129  DECL_PREPOST(termp_ss);
Line 144  DECL_PREPOST(termp_ss);
 DECL_PREPOST(termp_sq);  DECL_PREPOST(termp_sq);
 DECL_PREPOST(termp_vt);  DECL_PREPOST(termp_vt);
   
   DECL_PRE(termp__j);
   DECL_PRE(termp_ap);
 DECL_PRE(termp_ar);  DECL_PRE(termp_ar);
 DECL_PRE(termp_at);  DECL_PRE(termp_at);
 DECL_PRE(termp_bf);  DECL_PRE(termp_bf);
Line 136  DECL_PRE(termp_bsx);
Line 153  DECL_PRE(termp_bsx);
 DECL_PRE(termp_bt);  DECL_PRE(termp_bt);
 DECL_PRE(termp_cd);  DECL_PRE(termp_cd);
 DECL_PRE(termp_cm);  DECL_PRE(termp_cm);
   DECL_PRE(termp_dx);
 DECL_PRE(termp_em);  DECL_PRE(termp_em);
 DECL_PRE(termp_ex);  DECL_PRE(termp_ex);
 DECL_PRE(termp_fa);  DECL_PRE(termp_fa);
 DECL_PRE(termp_fl);  DECL_PRE(termp_fl);
 DECL_PRE(termp_fx);  DECL_PRE(termp_fx);
 DECL_PRE(termp_ic);  DECL_PRE(termp_ic);
   DECL_PRE(termp_lk);
 DECL_PRE(termp_ms);  DECL_PRE(termp_ms);
   DECL_PRE(termp_mt);
 DECL_PRE(termp_nd);  DECL_PRE(termp_nd);
 DECL_PRE(termp_nm);  DECL_PRE(termp_nm);
 DECL_PRE(termp_ns);  DECL_PRE(termp_ns);
Line 164  DECL_PRE(termp_xr);
Line 184  DECL_PRE(termp_xr);
 DECL_POST(termp___);  DECL_POST(termp___);
 DECL_POST(termp_bl);  DECL_POST(termp_bl);
 DECL_POST(termp_bx);  DECL_POST(termp_bx);
 DECL_POST(termp_lb);  
   
 const   struct termact __termacts[MDOC_MAX] = {  const   struct termact __termacts[MDOC_MAX] = {
         { NULL, NULL }, /* \" */          { NULL, NULL }, /* \" */
Line 212  const struct termact __termacts[MDOC_MAX] = {
Line 231  const struct termact __termacts[MDOC_MAX] = {
         { NULL, termp____post }, /* %B */          { NULL, termp____post }, /* %B */
         { NULL, termp____post }, /* %D */          { NULL, termp____post }, /* %D */
         { NULL, termp____post }, /* %I */          { NULL, termp____post }, /* %I */
         { NULL, termp____post }, /* %J */          { termp__j_pre, termp____post }, /* %J */
         { NULL, termp____post }, /* %N */          { NULL, termp____post }, /* %N */
         { NULL, termp____post }, /* %O */          { NULL, termp____post }, /* %O */
         { NULL, termp____post }, /* %P */          { NULL, termp____post }, /* %P */
Line 273  const struct termact __termacts[MDOC_MAX] = {
Line 292  const struct termact __termacts[MDOC_MAX] = {
         { NULL, NULL }, /* Hf */          { NULL, NULL }, /* Hf */
         { NULL, NULL }, /* Fr */          { NULL, NULL }, /* Fr */
         { termp_ud_pre, NULL }, /* Ud */          { termp_ud_pre, NULL }, /* Ud */
         { NULL, termp_lb_post }, /* lb */          { termp_lb_pre, termp_lb_post }, /* Lb */
           { termp_ap_pre, NULL }, /* Lb */
           { termp_pp_pre, NULL }, /* Pp */
           { termp_lk_pre, NULL }, /* Lk */
           { termp_mt_pre, NULL }, /* Mt */
           { termp_brq_pre, termp_brq_post }, /* Brq */
           { termp_brq_pre, termp_brq_post }, /* Bro */
           { NULL, NULL }, /* Brc */
           { NULL, NULL }, /* %C */
           { NULL, NULL }, /* Es */
           { NULL, NULL }, /* En */
           { termp_dx_pre, NULL }, /* Dx */
           { NULL, NULL }, /* %Q */
 };  };
   
 const struct termact *termacts = __termacts;  const struct termact *termacts = __termacts;
   
   
 static size_t  static size_t
 arg_width(const struct mdoc_argv *arg)  arg_width(const struct mdoc_argv *arg, int pos)
 {  {
         size_t           v;          size_t           v;
         int              i, len;          int              i, len;
   
         assert(*arg->value);          assert(pos < (int)arg->sz && pos >= 0);
         if (0 == strcmp(*arg->value, "indent"))          assert(arg->value[pos]);
           if (0 == strcmp(arg->value[pos], "indent"))
                 return(INDENT);                  return(INDENT);
         if (0 == strcmp(*arg->value, "indent-two"))          if (0 == strcmp(arg->value[pos], "indent-two"))
                 return(INDENT * 2);                  return(INDENT * 2);
   
         len = (int)strlen(*arg->value);          if (0 == (len = (int)strlen(arg->value[pos])))
         assert(len > 0);                  return(0);
   
         for (i = 0; i < len - 1; i++)          for (i = 0; i < len - 1; i++)
                 if ( ! isdigit((u_char)(*arg->value)[i]))                  if ( ! isdigit((u_char)arg->value[pos][i]))
                         break;                          break;
   
         if (i == len - 1) {          if (i == len - 1) {
                 if ('n' == (*arg->value)[len - 1]) {                  if ('n' == arg->value[pos][len - 1]) {
                         v = (size_t)atoi(*arg->value);                          v = (size_t)atoi(arg->value[pos]);
                         return(v);                          return(v);
                 }                  }
   
         }          }
         return(strlen(*arg->value) + 1);          return(strlen(arg->value[pos]) + 1);
 }  }
   
   
Line 316  arg_listtype(const struct mdoc_node *n)
Line 348  arg_listtype(const struct mdoc_node *n)
   
         assert(MDOC_BLOCK == n->type);          assert(MDOC_BLOCK == n->type);
   
         len = n->args ? n->args->argc : 0;          len = (int)(n->args ? n->args->argc : 0);
   
         for (i = 0; i < len; i++)          for (i = 0; i < len; i++)
                 switch (n->args->argv[i].arg) {                  switch (n->args->argv[i].arg) {
Line 336  arg_listtype(const struct mdoc_node *n)
Line 368  arg_listtype(const struct mdoc_node *n)
                         /* FALLTHROUGH */                          /* FALLTHROUGH */
                 case (MDOC_Item):                  case (MDOC_Item):
                         /* FALLTHROUGH */                          /* FALLTHROUGH */
                   case (MDOC_Column):
                           /* FALLTHROUGH */
                 case (MDOC_Ohang):                  case (MDOC_Ohang):
                         return(n->args->argv[i].arg);                          return(n->args->argv[i].arg);
                 default:                  default:
Line 370  arg_hasattr(int arg, const struct mdoc_node *n)
Line 404  arg_hasattr(int arg, const struct mdoc_node *n)
   
   
 static int  static int
 arg_getattr(int arg, const struct mdoc_node *n)  arg_getattr(int v, const struct mdoc_node *n)
 {  {
         int              i;          int              val;
   
           return(arg_getattrs(&v, &val, 1, n) ? val : -1);
   }
   
   
   static int
   arg_getattrs(const int *keys, int *vals,
                   size_t sz, const struct mdoc_node *n)
   {
           int              i, j, k;
   
         if (NULL == n->args)          if (NULL == n->args)
                 return(-1);                  return(0);
         for (i = 0; i < (int)n->args->argc; i++)  
                 if (n->args->argv[i].arg == arg)          for (k = i = 0; i < (int)n->args->argc; i++)
                         return(i);                  for (j = 0; j < (int)sz; j++)
         return(-1);                          if (n->args->argv[i].arg == keys[j]) {
                                   vals[j] = i;
                                   k++;
                           }
           return(k);
 }  }
   
   
 /* ARGSUSED */  /* ARGSUSED */
 static int  static int
 termp_dq_pre(DECL_ARGS)  fmt_block_vspace(struct termp *p,
                   const struct mdoc_node *bl,
                   const struct mdoc_node *node)
 {  {
           const struct mdoc_node *n;
   
         if (MDOC_BODY != node->type)          term_newln(p);
   
           if (arg_hasattr(MDOC_Compact, bl))
                 return(1);                  return(1);
   
         word(p, "``");          for (n = node; n; n = n->parent) {
         p->flags |= TERMP_NOSPACE;                  if (MDOC_BLOCK != n->type)
                           continue;
                   if (MDOC_Ss == n->tok)
                           break;
                   if (MDOC_Sh == n->tok)
                           break;
                   if (NULL == n->prev)
                           continue;
                   term_vspace(p);
                   break;
           }
   
         return(1);          return(1);
 }  }
   
   
 /* ARGSUSED */  /* ARGSUSED */
 static void  static int
 termp_dq_post(DECL_ARGS)  termp_dq_pre(DECL_ARGS)
 {  {
   
         if (MDOC_BODY != node->type)          if (MDOC_BODY != node->type)
                 return;                  return(1);
   
           term_word(p, "\\(lq");
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         word(p, "''");          return(1);
 }  }
   
   
 /* ARGSUSED */  /* ARGSUSED */
 static int  static void
 termp_it_pre_block(DECL_ARGS)  termp_dq_post(DECL_ARGS)
 {  {
   
         newln(p);          if (MDOC_BODY != node->type)
         if ( ! arg_hasattr(MDOC_Compact, node->parent->parent))                  return;
                 if (node->prev || node->parent->parent->prev)  
                         vspace(p);  
   
         return(1);          p->flags |= TERMP_NOSPACE;
           term_word(p, "\\(rq");
 }  }
   
   
Line 428  termp_it_pre_block(DECL_ARGS)
Line 492  termp_it_pre_block(DECL_ARGS)
 static int  static int
 termp_it_pre(DECL_ARGS)  termp_it_pre(DECL_ARGS)
 {  {
         const struct mdoc_node *bl;          const struct mdoc_node *bl, *n;
         char             buf[7];          char                    buf[7];
         int              i, type;          int                     i, type, keys[3], vals[3];
         size_t           width, offset;          size_t                  width, offset;
   
         if (MDOC_BLOCK == node->type)          if (MDOC_BLOCK == node->type)
                 return(termp_it_pre_block(p, pair, meta, node));                  return(fmt_block_vspace(p, node->parent->parent, node));
   
         /* Get ptr to list block, type, etc. */  
   
         bl = node->parent->parent->parent;          bl = node->parent->parent->parent;
         type = arg_listtype(bl);  
   
         /* Save parent attributes. */          /* Save parent attributes. */
   
Line 449  termp_it_pre(DECL_ARGS)
Line 510  termp_it_pre(DECL_ARGS)
   
         /* Get list width and offset. */          /* Get list width and offset. */
   
         i = arg_getattr(MDOC_Width, bl);          keys[0] = MDOC_Width;
         width = i >= 0 ? arg_width(&bl->args->argv[i]) : 0;          keys[1] = MDOC_Offset;
           keys[2] = MDOC_Column;
   
         i = arg_getattr(MDOC_Offset, bl);          vals[0] = vals[1] = vals[2] = -1;
         offset = i >= 0 ? arg_offset(&bl->args->argv[i]) : 0;  
   
           width = offset = 0;
   
           (void)arg_getattrs(keys, vals, 3, bl);
   
           type = arg_listtype(bl);
   
           /* Calculate real width and offset. */
   
           switch (type) {
           case (MDOC_Column):
                   if (MDOC_BODY == node->type)
                           break;
                   for (i = 0, n = node->prev; n; n = n->prev, i++)
                           offset += arg_width
                                   (&bl->args->argv[vals[2]], i);
                   assert(i < (int)bl->args->argv[vals[2]].sz);
                   width = arg_width(&bl->args->argv[vals[2]], i);
                   if (vals[1] >= 0)
                           offset += arg_offset(&bl->args->argv[vals[1]]);
                   break;
           default:
                   if (vals[0] >= 0)
                           width = arg_width(&bl->args->argv[vals[0]], 0);
                   if (vals[1] >= 0)
                           offset = arg_offset(&bl->args->argv[vals[1]]);
                   break;
           }
   
         /*          /*
          * List-type can override the width in the case of fixed-head           * List-type can override the width in the case of fixed-head
          * values (bullet, dash/hyphen, enum).  Tags need a non-zero           * values (bullet, dash/hyphen, enum).  Tags need a non-zero
Line 469  termp_it_pre(DECL_ARGS)
Line 558  termp_it_pre(DECL_ARGS)
         case (MDOC_Enum):          case (MDOC_Enum):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case (MDOC_Hyphen):          case (MDOC_Hyphen):
                 width = width > 4 ? width : 4;                  if (width < 4)
                           width = 4;
                 break;                  break;
         case (MDOC_Tag):          case (MDOC_Tag):
                 if (width)                  if (0 == width)
                         break;                          width = 10;
                 errx(1, "need non-zero %s for list type",                  break;
                                 mdoc_argnames[MDOC_Width]);  
         default:          default:
                 break;                  break;
         }          }
Line 538  termp_it_pre(DECL_ARGS)
Line 627  termp_it_pre(DECL_ARGS)
                                         NULL == node->next->child)                                          NULL == node->next->child)
                                 p->flags |= TERMP_NONOBREAK;                                  p->flags |= TERMP_NONOBREAK;
                 break;                  break;
           case (MDOC_Column):
                   if (MDOC_HEAD == node->type) {
                           assert(node->next);
                           if (MDOC_BODY == node->next->type)
                                   p->flags &= ~TERMP_NOBREAK;
                           else
                                   p->flags |= TERMP_NOBREAK;
                           if (node->prev)
                                   p->flags |= TERMP_NOLPAD;
                   }
                   break;
         case (MDOC_Diag):          case (MDOC_Diag):
                 if (MDOC_HEAD == node->type)                  if (MDOC_HEAD == node->type)
                         p->flags |= TERMP_NOBREAK;                          p->flags |= TERMP_NOBREAK;
Line 568  termp_it_pre(DECL_ARGS)
Line 668  termp_it_pre(DECL_ARGS)
                         p->rmargin = p->offset + width;                          p->rmargin = p->offset + width;
                 else                  else
                         p->offset += width;                          p->offset += width;
                 /* FALLTHROUGH */                  break;
           case (MDOC_Column):
                   p->rmargin = p->offset + width;
                   break;
         default:          default:
                 break;                  break;
         }          }
Line 581  termp_it_pre(DECL_ARGS)
Line 684  termp_it_pre(DECL_ARGS)
         if (MDOC_HEAD == node->type)          if (MDOC_HEAD == node->type)
                 switch (type) {                  switch (type) {
                 case (MDOC_Bullet):                  case (MDOC_Bullet):
                         word(p, "\\[bu]");                          term_word(p, "\\[bu]");
                         break;                          break;
                 case (MDOC_Dash):                  case (MDOC_Dash):
                         /* FALLTHROUGH */                          /* FALLTHROUGH */
                 case (MDOC_Hyphen):                  case (MDOC_Hyphen):
                         word(p, "\\-");                          term_word(p, "\\-");
                         break;                          break;
                 case (MDOC_Enum):                  case (MDOC_Enum):
                         /* TODO: have a wordfmt or something. */  
                         (pair->ppair->ppair->count)++;                          (pair->ppair->ppair->count)++;
                         (void)snprintf(buf, sizeof(buf), "%d.",                          (void)snprintf(buf, sizeof(buf), "%d.",
                                         pair->ppair->ppair->count);                                          pair->ppair->ppair->count);
                         word(p, buf);                          term_word(p, buf);
                         break;                          break;
                 default:                  default:
                         break;                          break;
                 }                  }
   
         /*          /*
          * If we're not going to process our header children, indicate           * If we're not going to process our children, indicate so here.
          * so here.  
          */           */
   
         if (MDOC_HEAD == node->type)          switch (type) {
                 switch (type) {          case (MDOC_Bullet):
                 case (MDOC_Bullet):                  /* FALLTHROUGH */
                         /* FALLTHROUGH */          case (MDOC_Item):
                 case (MDOC_Item):                  /* FALLTHROUGH */
                         /* FALLTHROUGH */          case (MDOC_Dash):
                 case (MDOC_Dash):                  /* FALLTHROUGH */
                         /* FALLTHROUGH */          case (MDOC_Hyphen):
                 case (MDOC_Hyphen):                  /* FALLTHROUGH */
                         /* FALLTHROUGH */          case (MDOC_Enum):
                 case (MDOC_Enum):                  if (MDOC_HEAD == node->type)
                         return(0);                          return(0);
                 default:                  break;
                         break;          case (MDOC_Column):
                   if (MDOC_BODY == node->type)
                           return(0);
                   break;
           default:
                   break;
         }          }
   
         return(1);          return(1);
Line 641  termp_it_post(DECL_ARGS)
Line 747  termp_it_post(DECL_ARGS)
         case (MDOC_Item):          case (MDOC_Item):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case (MDOC_Inset):          case (MDOC_Inset):
                 if (MDOC_BODY != node->type)                  if (MDOC_BODY == node->type)
                         break;                          term_flushln(p);
                 flushln(p);  
                 break;                  break;
           case (MDOC_Column):
                   if (MDOC_HEAD == node->type)
                           term_flushln(p);
                   break;
         default:          default:
                 flushln(p);                  term_flushln(p);
                 break;                  break;
         }          }
   
Line 662  termp_nm_pre(DECL_ARGS)
Line 771  termp_nm_pre(DECL_ARGS)
 {  {
   
         if (SEC_SYNOPSIS == node->sec)          if (SEC_SYNOPSIS == node->sec)
                 newln(p);                  term_newln(p);
   
         TERMPAIR_SETFLAG(p, pair, ttypes[TTYPE_PROG]);          TERMPAIR_SETFLAG(p, pair, ttypes[TTYPE_PROG]);
         if (NULL == node->child)          if (NULL == node->child)
                 word(p, meta->name);                  term_word(p, meta->name);
   
         return(1);          return(1);
 }  }
Line 678  termp_fl_pre(DECL_ARGS)
Line 787  termp_fl_pre(DECL_ARGS)
 {  {
   
         TERMPAIR_SETFLAG(p, pair, ttypes[TTYPE_CMD_FLAG]);          TERMPAIR_SETFLAG(p, pair, ttypes[TTYPE_CMD_FLAG]);
         word(p, "\\-");          term_word(p, "\\-");
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         return(1);          return(1);
 }  }
Line 709  static int
Line 818  static int
 termp_pp_pre(DECL_ARGS)  termp_pp_pre(DECL_ARGS)
 {  {
   
         vspace(p);          term_vspace(p);
         return(1);          return(1);
 }  }
   
Line 720  termp_st_pre(DECL_ARGS)
Line 829  termp_st_pre(DECL_ARGS)
 {  {
         const char      *cp;          const char      *cp;
   
         if (node->child) {          if (node->child && (cp = mdoc_a2st(node->child->string)))
                 if (MDOC_TEXT != node->child->type)                  term_word(p, cp);
                         errx(1, "expected text line arguments");  
                 if ((cp = mdoc_a2st(node->child->string)))  
                         word(p, cp);  
         }  
         return(0);          return(0);
 }  }
   
Line 736  termp_rs_pre(DECL_ARGS)
Line 841  termp_rs_pre(DECL_ARGS)
 {  {
   
         if (MDOC_BLOCK == node->type && node->prev)          if (MDOC_BLOCK == node->type && node->prev)
                 vspace(p);                  term_vspace(p);
         return(1);          return(1);
 }  }
   
Line 752  termp_rv_pre(DECL_ARGS)
Line 857  termp_rv_pre(DECL_ARGS)
         if (1 != node->args->argv[i].sz)          if (1 != node->args->argv[i].sz)
                 errx(1, "expected -std argument");                  errx(1, "expected -std argument");
   
         newln(p);          term_newln(p);
         word(p, "The");          term_word(p, "The");
   
         p->flags |= ttypes[TTYPE_FUNC_NAME];          p->flags |= ttypes[TTYPE_FUNC_NAME];
         word(p, *node->args->argv[i].value);          term_word(p, *node->args->argv[i].value);
         p->flags &= ~ttypes[TTYPE_FUNC_NAME];          p->flags &= ~ttypes[TTYPE_FUNC_NAME];
           p->flags |= TERMP_NOSPACE;
   
         word(p, "() function returns the value 0 if successful;");          term_word(p, "() function returns the value 0 if successful;");
         word(p, "otherwise the value -1 is returned and the");          term_word(p, "otherwise the value -1 is returned and the");
         word(p, "global variable");          term_word(p, "global variable");
   
         p->flags |= ttypes[TTYPE_VAR_DECL];          p->flags |= ttypes[TTYPE_VAR_DECL];
         word(p, "errno");          term_word(p, "errno");
         p->flags &= ~ttypes[TTYPE_VAR_DECL];          p->flags &= ~ttypes[TTYPE_VAR_DECL];
   
         word(p, "is set to indicate the error.");          term_word(p, "is set to indicate the error.");
   
         return(1);          return(1);
 }  }
Line 784  termp_ex_pre(DECL_ARGS)
Line 890  termp_ex_pre(DECL_ARGS)
         if (1 != node->args->argv[i].sz)          if (1 != node->args->argv[i].sz)
                 errx(1, "expected -std argument");                  errx(1, "expected -std argument");
   
         word(p, "The");          term_word(p, "The");
         p->flags |= ttypes[TTYPE_PROG];          p->flags |= ttypes[TTYPE_PROG];
         word(p, *node->args->argv[i].value);          term_word(p, *node->args->argv[i].value);
         p->flags &= ~ttypes[TTYPE_PROG];          p->flags &= ~ttypes[TTYPE_PROG];
         word(p, "utility exits 0 on success, and >0 if an error occurs.");          term_word(p, "utility exits 0 on success, and >0 if an error occurs.");
   
         return(1);          return(1);
 }  }
Line 799  static int
Line 905  static int
 termp_nd_pre(DECL_ARGS)  termp_nd_pre(DECL_ARGS)
 {  {
   
         word(p, "\\-");          term_word(p, "\\-");
         return(1);          return(1);
 }  }
   
Line 810  termp_bl_post(DECL_ARGS)
Line 916  termp_bl_post(DECL_ARGS)
 {  {
   
         if (MDOC_BLOCK == node->type)          if (MDOC_BLOCK == node->type)
                 newln(p);                  term_newln(p);
 }  }
   
   
Line 822  termp_op_post(DECL_ARGS)
Line 928  termp_op_post(DECL_ARGS)
         if (MDOC_BODY != node->type)          if (MDOC_BODY != node->type)
                 return;                  return;
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         word(p, "\\(rB");          term_word(p, "\\(rB");
 }  }
   
   
Line 834  termp_xr_pre(DECL_ARGS)
Line 940  termp_xr_pre(DECL_ARGS)
   
         if (NULL == (n = node->child))          if (NULL == (n = node->child))
                 errx(1, "expected text line argument");                  errx(1, "expected text line argument");
         if (MDOC_TEXT != n->type)          term_word(p, n->string);
                 errx(1, "expected text line argument");  
   
         word(p, n->string);  
   
         if (NULL == (n = n->next))          if (NULL == (n = n->next))
                 return(0);                  return(0);
         if (MDOC_TEXT != n->type)  
                 errx(1, "expected text line argument");  
   
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         word(p, "(");          term_word(p, "(");
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         word(p, n->string);          term_word(p, n->string);
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         word(p, ")");          term_word(p, ")");
   
         return(0);          return(0);
 }  }
   
Line 872  termp_vt_post(DECL_ARGS)
Line 970  termp_vt_post(DECL_ARGS)
 {  {
   
         if (node->sec == SEC_SYNOPSIS)          if (node->sec == SEC_SYNOPSIS)
                 vspace(p);                  term_vspace(p);
 }  }
   
   
Line 897  termp_fd_post(DECL_ARGS)
Line 995  termp_fd_post(DECL_ARGS)
   
         if (node->sec != SEC_SYNOPSIS)          if (node->sec != SEC_SYNOPSIS)
                 return;                  return;
         newln(p);          term_newln(p);
         if (node->next && MDOC_Fd != node->next->tok)          if (node->next && MDOC_Fd != node->next->tok)
                 vspace(p);                  term_vspace(p);
 }  }
   
   
Line 910  termp_sh_pre(DECL_ARGS)
Line 1008  termp_sh_pre(DECL_ARGS)
   
         switch (node->type) {          switch (node->type) {
         case (MDOC_HEAD):          case (MDOC_HEAD):
                 vspace(p);                  term_vspace(p);
                 TERMPAIR_SETFLAG(p, pair, ttypes[TTYPE_SECTION]);                  TERMPAIR_SETFLAG(p, pair, ttypes[TTYPE_SECTION]);
                 break;                  break;
         case (MDOC_BODY):          case (MDOC_BODY):
Line 930  termp_sh_post(DECL_ARGS)
Line 1028  termp_sh_post(DECL_ARGS)
   
         switch (node->type) {          switch (node->type) {
         case (MDOC_HEAD):          case (MDOC_HEAD):
                 newln(p);                  term_newln(p);
                 break;                  break;
         case (MDOC_BODY):          case (MDOC_BODY):
                 newln(p);                  term_newln(p);
                 p->offset = 0;                  p->offset = 0;
                 break;                  break;
         default:          default:
Line 949  termp_op_pre(DECL_ARGS)
Line 1047  termp_op_pre(DECL_ARGS)
   
         switch (node->type) {          switch (node->type) {
         case (MDOC_BODY):          case (MDOC_BODY):
                 word(p, "\\(lB");                  term_word(p, "\\(lB");
                 p->flags |= TERMP_NOSPACE;                  p->flags |= TERMP_NOSPACE;
                 break;                  break;
         default:          default:
Line 964  static int
Line 1062  static int
 termp_bt_pre(DECL_ARGS)  termp_bt_pre(DECL_ARGS)
 {  {
   
         word(p, "is currently in beta test.");          term_word(p, "is currently in beta test.");
         return(1);          return(1);
 }  }
   
   
 /* ARGSUSED */  /* ARGSUSED */
   static int
   termp_lb_pre(DECL_ARGS)
   {
           const char      *lb;
   
           if (NULL == node->child)
                   errx(1, "expected text line argument");
           if ((lb = mdoc_a2lib(node->child->string))) {
                   term_word(p, lb);
                   return(0);
           }
           term_word(p, "library");
           return(1);
   }
   
   
   /* ARGSUSED */
 static void  static void
 termp_lb_post(DECL_ARGS)  termp_lb_post(DECL_ARGS)
 {  {
   
         newln(p);          term_newln(p);
 }  }
   
   
Line 983  static int
Line 1098  static int
 termp_ud_pre(DECL_ARGS)  termp_ud_pre(DECL_ARGS)
 {  {
   
         word(p, "currently under development.");          term_word(p, "currently under development.");
         return(1);          return(1);
 }  }
   
Line 995  termp_d1_pre(DECL_ARGS)
Line 1110  termp_d1_pre(DECL_ARGS)
   
         if (MDOC_BODY != node->type)          if (MDOC_BODY != node->type)
                 return(1);                  return(1);
         newln(p);          term_newln(p);
         p->offset += (pair->offset = INDENT);          p->offset += (pair->offset = INDENT);
         return(1);          return(1);
 }  }
Line 1008  termp_d1_post(DECL_ARGS)
Line 1123  termp_d1_post(DECL_ARGS)
   
         if (MDOC_BODY != node->type)          if (MDOC_BODY != node->type)
                 return;                  return;
         newln(p);          term_newln(p);
         p->offset -= pair->offset;          p->offset -= pair->offset;
 }  }
   
Line 1020  termp_aq_pre(DECL_ARGS)
Line 1135  termp_aq_pre(DECL_ARGS)
   
         if (MDOC_BODY != node->type)          if (MDOC_BODY != node->type)
                 return(1);                  return(1);
         word(p, "\\(la");          term_word(p, "\\(la");
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         return(1);          return(1);
 }  }
Line 1034  termp_aq_post(DECL_ARGS)
Line 1149  termp_aq_post(DECL_ARGS)
         if (MDOC_BODY != node->type)          if (MDOC_BODY != node->type)
                 return;                  return;
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         word(p, "\\(ra");          term_word(p, "\\(ra");
 }  }
   
   
Line 1045  termp_ft_pre(DECL_ARGS)
Line 1160  termp_ft_pre(DECL_ARGS)
   
         if (SEC_SYNOPSIS == node->sec)          if (SEC_SYNOPSIS == node->sec)
                 if (node->prev && MDOC_Fo == node->prev->tok)                  if (node->prev && MDOC_Fo == node->prev->tok)
                         vspace(p);                          term_vspace(p);
         TERMPAIR_SETFLAG(p, pair, ttypes[TTYPE_FUNC_TYPE]);          TERMPAIR_SETFLAG(p, pair, ttypes[TTYPE_FUNC_TYPE]);
         return(1);          return(1);
 }  }
Line 1057  termp_ft_post(DECL_ARGS)
Line 1172  termp_ft_post(DECL_ARGS)
 {  {
   
         if (SEC_SYNOPSIS == node->sec)          if (SEC_SYNOPSIS == node->sec)
                 newln(p);                  term_newln(p);
 }  }
   
   
Line 1069  termp_fn_pre(DECL_ARGS)
Line 1184  termp_fn_pre(DECL_ARGS)
   
         if (NULL == node->child)          if (NULL == node->child)
                 errx(1, "expected text line arguments");                  errx(1, "expected text line arguments");
         if (MDOC_TEXT != node->child->type)  
                 errx(1, "expected text line arguments");  
   
         /* FIXME: can be "type funcname" "type varname"... */          /* FIXME: can be "type funcname" "type varname"... */
   
         p->flags |= ttypes[TTYPE_FUNC_NAME];          p->flags |= ttypes[TTYPE_FUNC_NAME];
         word(p, node->child->string);          term_word(p, node->child->string);
         p->flags &= ~ttypes[TTYPE_FUNC_NAME];          p->flags &= ~ttypes[TTYPE_FUNC_NAME];
   
         word(p, "(");  
   
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
           term_word(p, "(");
   
         for (n = node->child->next; n; n = n->next) {          for (n = node->child->next; n; n = n->next) {
                 if (MDOC_TEXT != n->type)  
                         errx(1, "expected text line arguments");  
                 p->flags |= ttypes[TTYPE_FUNC_ARG];                  p->flags |= ttypes[TTYPE_FUNC_ARG];
                 word(p, n->string);                  term_word(p, n->string);
                 p->flags &= ~ttypes[TTYPE_FUNC_ARG];                  p->flags &= ~ttypes[TTYPE_FUNC_ARG];
                 if (n->next)                  if (n->next)
                         word(p, ",");                          term_word(p, ",");
         }          }
   
         word(p, ")");          term_word(p, ")");
   
         if (SEC_SYNOPSIS == node->sec)          if (SEC_SYNOPSIS == node->sec)
                 word(p, ";");                  term_word(p, ";");
   
         return(0);          return(0);
 }  }
Line 1106  termp_fn_post(DECL_ARGS)
Line 1217  termp_fn_post(DECL_ARGS)
 {  {
   
         if (node->sec == SEC_SYNOPSIS && node->next)          if (node->sec == SEC_SYNOPSIS && node->next)
                 vspace(p);                  term_vspace(p);
   
 }  }
   
Line 1133  termp_fa_pre(DECL_ARGS)
Line 1244  termp_fa_pre(DECL_ARGS)
         }          }
   
         for (n = node->child; n; n = n->next) {          for (n = node->child; n; n = n->next) {
                 if (MDOC_TEXT != n->type)  
                         errx(1, "expected text line arguments");  
   
                 p->flags |= ttypes[TTYPE_FUNC_ARG];                  p->flags |= ttypes[TTYPE_FUNC_ARG];
                 word(p, n->string);                  term_word(p, n->string);
                 p->flags &= ~ttypes[TTYPE_FUNC_ARG];                  p->flags &= ~ttypes[TTYPE_FUNC_ARG];
   
                 if (n->next)                  if (n->next)
                         word(p, ",");                          term_word(p, ",");
         }          }
   
         if (node->next && node->next->tok == MDOC_Fa)          if (node->child && node->next && node->next->tok == MDOC_Fa)
                 word(p, ",");                  term_word(p, ",");
   
         return(0);          return(0);
 }  }
Line 1165  termp_va_pre(DECL_ARGS)
Line 1272  termp_va_pre(DECL_ARGS)
 static int  static int
 termp_bd_pre(DECL_ARGS)  termp_bd_pre(DECL_ARGS)
 {  {
         const struct mdoc_node  *n;          int              i, type, ln;
         int                      i, type;  
   
         if (MDOC_BLOCK == node->type) {          /*
                 if (node->prev)           * This is fairly tricky due primarily to crappy documentation.
                         vspace(p);           * If -ragged or -filled are specified, the block does nothing
            * but change the indentation.
            *
            * If, on the other hand, -unfilled or -literal are specified,
            * then the game changes.  Text is printed exactly as entered in
            * the display: if a macro line, a newline is appended to the
            * line.  Blank lines are allowed.
            */
   
           if (MDOC_BLOCK == node->type)
                   return(fmt_block_vspace(p, node, node));
           else if (MDOC_BODY != node->type)
                 return(1);                  return(1);
         } else if (MDOC_BODY != node->type)  
                 return(1);  
   
         if (NULL == node->parent->args)          if (NULL == node->parent->args)
                 errx(1, "missing display type");                  errx(1, "missing display type");
Line 1217  termp_bd_pre(DECL_ARGS)
Line 1332  termp_bd_pre(DECL_ARGS)
                 return(1);                  return(1);
         }          }
   
           /*
            * Tricky.  Iterate through all children.  If we're on a
            * different parse line, append a newline and then the contents.
            * Ew.
            */
   
         p->flags |= TERMP_LITERAL;          p->flags |= TERMP_LITERAL;
           ln = node->child ? node->child->line : 0;
   
         for (n = node->child; n; n = n->next) {          for (node = node->child; node; node = node->next) {
                 if (MDOC_TEXT != n->type) {                  if (ln < node->line) {
                         warnx("non-text children not yet allowed");                          term_flushln(p);
                         continue;                          p->flags |= TERMP_NOSPACE;
                 }                  }
                 word(p, n->string);                  ln = node->line;
                 flushln(p);                  term_node(p, pair, meta, node);
         }          }
   
         return(0);          return(0);
Line 1240  termp_bd_post(DECL_ARGS)
Line 1362  termp_bd_post(DECL_ARGS)
         if (MDOC_BODY != node->type)          if (MDOC_BODY != node->type)
                 return;                  return;
   
         if ( ! (p->flags & TERMP_LITERAL))          term_flushln(p);
                 flushln(p);  
   
         p->flags &= ~TERMP_LITERAL;          p->flags &= ~TERMP_LITERAL;
         p->offset = pair->offset;          p->offset = pair->offset;
           p->flags |= TERMP_NOSPACE;
 }  }
   
   
Line 1255  termp_qq_pre(DECL_ARGS)
Line 1376  termp_qq_pre(DECL_ARGS)
   
         if (MDOC_BODY != node->type)          if (MDOC_BODY != node->type)
                 return(1);                  return(1);
         word(p, "\"");          term_word(p, "\"");
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         return(1);          return(1);
 }  }
Line 1269  termp_qq_post(DECL_ARGS)
Line 1390  termp_qq_post(DECL_ARGS)
         if (MDOC_BODY != node->type)          if (MDOC_BODY != node->type)
                 return;                  return;
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         word(p, "\"");          term_word(p, "\"");
 }  }
   
   
Line 1278  static int
Line 1399  static int
 termp_bsx_pre(DECL_ARGS)  termp_bsx_pre(DECL_ARGS)
 {  {
   
         word(p, "BSDI BSD/OS");          term_word(p, "BSDI BSD/OS");
         return(1);          return(1);
 }  }
   
Line 1290  termp_bx_post(DECL_ARGS)
Line 1411  termp_bx_post(DECL_ARGS)
   
         if (node->child)          if (node->child)
                 p->flags |= TERMP_NOSPACE;                  p->flags |= TERMP_NOSPACE;
         word(p, "BSD");          term_word(p, "BSD");
 }  }
   
   
Line 1299  static int
Line 1420  static int
 termp_ox_pre(DECL_ARGS)  termp_ox_pre(DECL_ARGS)
 {  {
   
         word(p, "OpenBSD");          term_word(p, "OpenBSD");
         return(1);          return(1);
 }  }
   
   
 /* ARGSUSED */  /* ARGSUSED */
 static int  static int
   termp_dx_pre(DECL_ARGS)
   {
   
           term_word(p, "DragonFly");
           return(1);
   }
   
   
   /* ARGSUSED */
   static int
 termp_ux_pre(DECL_ARGS)  termp_ux_pre(DECL_ARGS)
 {  {
   
         word(p, "UNIX");          term_word(p, "UNIX");
         return(1);          return(1);
 }  }
   
Line 1319  static int
Line 1450  static int
 termp_fx_pre(DECL_ARGS)  termp_fx_pre(DECL_ARGS)
 {  {
   
         word(p, "FreeBSD");          term_word(p, "FreeBSD");
         return(1);          return(1);
 }  }
   
Line 1329  static int
Line 1460  static int
 termp_nx_pre(DECL_ARGS)  termp_nx_pre(DECL_ARGS)
 {  {
   
         word(p, "NetBSD");          term_word(p, "NetBSD");
         return(1);          return(1);
 }  }
   
Line 1341  termp_sq_pre(DECL_ARGS)
Line 1472  termp_sq_pre(DECL_ARGS)
   
         if (MDOC_BODY != node->type)          if (MDOC_BODY != node->type)
                 return(1);                  return(1);
         word(p, "`");          term_word(p, "\\(oq");
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         return(1);          return(1);
 }  }
Line 1355  termp_sq_post(DECL_ARGS)
Line 1486  termp_sq_post(DECL_ARGS)
         if (MDOC_BODY != node->type)          if (MDOC_BODY != node->type)
                 return;                  return;
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         word(p, "\'");          term_word(p, "\\(aq");
 }  }
   
   
Line 1385  termp_ss_pre(DECL_ARGS)
Line 1516  termp_ss_pre(DECL_ARGS)
 {  {
   
         switch (node->type) {          switch (node->type) {
           case (MDOC_BLOCK):
                   term_newln(p);
                   if (node->prev)
                           term_vspace(p);
                   break;
         case (MDOC_HEAD):          case (MDOC_HEAD):
                 vspace(p);  
                 TERMPAIR_SETFLAG(p, pair, ttypes[TTYPE_SSECTION]);                  TERMPAIR_SETFLAG(p, pair, ttypes[TTYPE_SSECTION]);
                 p->offset = INDENT / 2;                  p->offset = INDENT / 2;
                 break;                  break;
Line 1405  termp_ss_post(DECL_ARGS)
Line 1540  termp_ss_post(DECL_ARGS)
   
         switch (node->type) {          switch (node->type) {
         case (MDOC_HEAD):          case (MDOC_HEAD):
                 newln(p);                  term_newln(p);
                 p->offset = INDENT;                  p->offset = INDENT;
                 break;                  break;
         default:          default:
Line 1440  termp_cd_pre(DECL_ARGS)
Line 1575  termp_cd_pre(DECL_ARGS)
 {  {
   
         TERMPAIR_SETFLAG(p, pair, ttypes[TTYPE_CONFIG]);          TERMPAIR_SETFLAG(p, pair, ttypes[TTYPE_CONFIG]);
         newln(p);          term_newln(p);
         return(1);          return(1);
 }  }
   
Line 1471  termp_in_pre(DECL_ARGS)
Line 1606  termp_in_pre(DECL_ARGS)
 {  {
   
         TERMPAIR_SETFLAG(p, pair, ttypes[TTYPE_INCLUDE]);          TERMPAIR_SETFLAG(p, pair, ttypes[TTYPE_INCLUDE]);
         word(p, "#include");          term_word(p, "#include");
         word(p, "<");          term_word(p, "<");
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         return(1);          return(1);
 }  }
Line 1484  termp_in_post(DECL_ARGS)
Line 1619  termp_in_post(DECL_ARGS)
 {  {
   
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         word(p, ">");          term_word(p, ">");
   
         newln(p);          term_newln(p);
         if (SEC_SYNOPSIS != node->sec)          if (SEC_SYNOPSIS != node->sec)
                 return;                  return;
         if (node->next && MDOC_In != node->next->tok)          if (node->next && MDOC_In != node->next->tok)
                 vspace(p);                  term_vspace(p);
 }  }
   
   
Line 1502  termp_at_pre(DECL_ARGS)
Line 1637  termp_at_pre(DECL_ARGS)
   
         att = NULL;          att = NULL;
   
         if (node->child) {          if (node->child)
                 if (MDOC_TEXT != node->child->type)  
                         errx(1, "expected text line argument");  
                 att = mdoc_a2att(node->child->string);                  att = mdoc_a2att(node->child->string);
         }  
   
         if (NULL == att)          if (NULL == att)
                 att = "AT&T UNIX";                  att = "AT&T UNIX";
   
         word(p, att);          term_word(p, att);
         return(0);          return(0);
 }  }
   
   
 /* ARGSUSED */  /* ARGSUSED */
 static int  static int
   termp_brq_pre(DECL_ARGS)
   {
   
           if (MDOC_BODY != node->type)
                   return(1);
           term_word(p, "\\(lC");
           p->flags |= TERMP_NOSPACE;
           return(1);
   }
   
   
   /* ARGSUSED */
   static void
   termp_brq_post(DECL_ARGS)
   {
   
           if (MDOC_BODY != node->type)
                   return;
           p->flags |= TERMP_NOSPACE;
           term_word(p, "\\(rC");
   }
   
   
   /* ARGSUSED */
   static int
 termp_bq_pre(DECL_ARGS)  termp_bq_pre(DECL_ARGS)
 {  {
   
         if (MDOC_BODY != node->type)          if (MDOC_BODY != node->type)
                 return(1);                  return(1);
         word(p, "[");          term_word(p, "\\(lB");
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         return(1);          return(1);
 }  }
Line 1536  termp_bq_post(DECL_ARGS)
Line 1692  termp_bq_post(DECL_ARGS)
   
         if (MDOC_BODY != node->type)          if (MDOC_BODY != node->type)
                 return;                  return;
         word(p, "]");          p->flags |= TERMP_NOSPACE;
           term_word(p, "\\(rB");
 }  }
   
   
Line 1547  termp_pq_pre(DECL_ARGS)
Line 1704  termp_pq_pre(DECL_ARGS)
   
         if (MDOC_BODY != node->type)          if (MDOC_BODY != node->type)
                 return(1);                  return(1);
         word(p, "\\&(");          term_word(p, "\\&(");
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         return(1);          return(1);
 }  }
Line 1560  termp_pq_post(DECL_ARGS)
Line 1717  termp_pq_post(DECL_ARGS)
   
         if (MDOC_BODY != node->type)          if (MDOC_BODY != node->type)
                 return;                  return;
         word(p, ")");          term_word(p, ")");
 }  }
   
   
Line 1571  termp_fo_pre(DECL_ARGS)
Line 1728  termp_fo_pre(DECL_ARGS)
         const struct mdoc_node *n;          const struct mdoc_node *n;
   
         if (MDOC_BODY == node->type) {          if (MDOC_BODY == node->type) {
                 word(p, "(");                  term_word(p, "(");
                 p->flags |= TERMP_NOSPACE;                  p->flags |= TERMP_NOSPACE;
                 return(1);                  return(1);
         } else if (MDOC_HEAD != node->type)          } else if (MDOC_HEAD != node->type)
Line 1583  termp_fo_pre(DECL_ARGS)
Line 1740  termp_fo_pre(DECL_ARGS)
         for (n = node->child; n; n = n->next) {          for (n = node->child; n; n = n->next) {
                 if (MDOC_TEXT != n->type)                  if (MDOC_TEXT != n->type)
                         errx(1, "expected text line argument");                          errx(1, "expected text line argument");
                 word(p, n->string);                  term_word(p, n->string);
         }          }
         p->flags &= ~ttypes[TTYPE_FUNC_NAME];          p->flags &= ~ttypes[TTYPE_FUNC_NAME];
   
Line 1598  termp_fo_post(DECL_ARGS)
Line 1755  termp_fo_post(DECL_ARGS)
   
         if (MDOC_BODY != node->type)          if (MDOC_BODY != node->type)
                 return;                  return;
         word(p, ")");          p->flags |= TERMP_NOSPACE;
         word(p, ";");          term_word(p, ")");
         newln(p);          p->flags |= TERMP_NOSPACE;
           term_word(p, ";");
           term_newln(p);
 }  }
   
   
Line 1662  static int
Line 1821  static int
 termp_sm_pre(DECL_ARGS)  termp_sm_pre(DECL_ARGS)
 {  {
   
 #if notyet          if (NULL == node->child || MDOC_TEXT != node->child->type)
         assert(node->child);                  errx(1, "expected boolean line argument");
         if (0 == strcmp("off", node->child->data.text.string)) {  
           if (0 == strcmp("on", node->child->string)) {
                 p->flags &= ~TERMP_NONOSPACE;                  p->flags &= ~TERMP_NONOSPACE;
                 p->flags &= ~TERMP_NOSPACE;                  p->flags &= ~TERMP_NOSPACE;
         } else {          } else
                 p->flags |= TERMP_NONOSPACE;                  p->flags |= TERMP_NONOSPACE;
                 p->flags |= TERMP_NOSPACE;  
         }  
 #endif  
   
         return(0);          return(0);
 }  }
Line 1679  termp_sm_pre(DECL_ARGS)
Line 1836  termp_sm_pre(DECL_ARGS)
   
 /* ARGSUSED */  /* ARGSUSED */
 static int  static int
   termp_ap_pre(DECL_ARGS)
   {
   
           p->flags |= TERMP_NOSPACE;
           term_word(p, "\\(aq");
           p->flags |= TERMP_NOSPACE;
           return(1);
   }
   
   
   /* ARGSUSED */
   static int
   termp__j_pre(DECL_ARGS)
   {
   
           TERMPAIR_SETFLAG(p, pair, ttypes[TTYPE_REF_JOURNAL]);
           return(1);
   }
   
   
   /* ARGSUSED */
   static int
 termp__t_pre(DECL_ARGS)  termp__t_pre(DECL_ARGS)
 {  {
   
         /* FIXME: titles are underlined. */          term_word(p, "\"");
         word(p, "\"");  
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         return(1);          return(1);
 }  }
Line 1695  termp__t_post(DECL_ARGS)
Line 1873  termp__t_post(DECL_ARGS)
 {  {
   
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         /* FIXME: titles are underlined. */          term_word(p, "\"");
         word(p, "\"");          termp____post(p, pair, meta, node);
         word(p, node->next ? "," : ".");  
 }  }
   
   
Line 1707  termp____post(DECL_ARGS)
Line 1884  termp____post(DECL_ARGS)
 {  {
   
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         word(p, node->next ? "," : ".");          term_word(p, node->next ? "," : ".");
 }  }
   
   
   /* ARGSUSED */
   static int
   termp_lk_pre(DECL_ARGS)
   {
           const struct mdoc_node *n;
   
           if (NULL == (n = node->child))
                   errx(1, "expected line argument");
   
           p->flags |= ttypes[TTYPE_LINK_ANCHOR];
           term_word(p, n->string);
           p->flags &= ~ttypes[TTYPE_LINK_ANCHOR];
           p->flags |= TERMP_NOSPACE;
           term_word(p, ":");
   
           p->flags |= ttypes[TTYPE_LINK_TEXT];
           for ( ; n; n = n->next) {
                   term_word(p, n->string);
           }
           p->flags &= ~ttypes[TTYPE_LINK_TEXT];
   
           return(0);
   }
   
   
   /* ARGSUSED */
   static int
   termp_mt_pre(DECL_ARGS)
   {
   
           TERMPAIR_SETFLAG(p, pair, ttypes[TTYPE_LINK_ANCHOR]);
           return(1);
   }
   

Legend:
Removed from v.1.45  
changed lines
  Added in v.1.68

CVSweb