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

Diff for /mandoc/term.c between version 1.11 and 1.15

version 1.11, 2009/02/23 09:46:59 version 1.15, 2009/02/24 15:01:15
Line 30 
Line 30 
  */   */
   
 /* FIXME: indent/tab. */  /* FIXME: indent/tab. */
   /* FIXME: handle nested lists. */
   
 #define TTYPE_PROG        0  #define TTYPE_PROG        0
 #define TTYPE_CMD_FLAG    1  #define TTYPE_CMD_FLAG    1
Line 44 
Line 45 
 #define TTYPE_SSECTION    10  #define TTYPE_SSECTION    10
 #define TTYPE_FILE        11  #define TTYPE_FILE        11
 #define TTYPE_EMPH        12  #define TTYPE_EMPH        12
 #define TTYPE_NMAX        13  #define TTYPE_CONFIG      13
   #define TTYPE_CMD         14
   #define TTYPE_INCLUDE     15
   #define TTYPE_NMAX        16
   
 /*  /*
  * These define "styles" for element types, like command arguments or   * These define "styles" for element types, like command arguments or
Line 65  const int ttypes[TTYPE_NMAX] = {
Line 69  const int ttypes[TTYPE_NMAX] = {
         TERMP_UNDERLINE,        /* TTYPE_LINK */          TERMP_UNDERLINE,        /* TTYPE_LINK */
         TERMP_BOLD,             /* TTYPE_SSECTION */          TERMP_BOLD,             /* TTYPE_SSECTION */
         TERMP_UNDERLINE,        /* TTYPE_FILE */          TERMP_UNDERLINE,        /* TTYPE_FILE */
         TERMP_UNDERLINE         /* TTYPE_EMPH */          TERMP_UNDERLINE,        /* TTYPE_EMPH */
           TERMP_BOLD,             /* TTYPE_CONFIG */
           TERMP_BOLD,             /* TTYPE_CMD */
           TERMP_BOLD              /* TTYPE_INCLUDE */
 };  };
   
 static  int               arg_hasattr(int, size_t,  static  int               arg_hasattr(int, size_t,
                                 const struct mdoc_arg *);                                  const struct mdoc_arg *);
 static  int               arg_getattr(int, size_t,  static  int               arg_getattr(int, size_t,
                                 const struct mdoc_arg *);                                  const struct mdoc_arg *);
 static  size_t            arg_offset(const char *);  static  size_t            arg_offset(const struct mdoc_arg *);
   static  size_t            arg_width(const struct mdoc_arg *);
   
 /*  /*
  * What follows describes prefix and postfix operations for the abstract   * What follows describes prefix and postfix operations for the abstract
Line 94  DECL_POST(name);
Line 102  DECL_POST(name);
   
 DECL_PREPOST(termp_aq);  DECL_PREPOST(termp_aq);
 DECL_PREPOST(termp_ar);  DECL_PREPOST(termp_ar);
   DECL_PREPOST(termp_bd);
   DECL_PREPOST(termp_bq);
   DECL_PREPOST(termp_cd);
   DECL_PREPOST(termp_cm);
 DECL_PREPOST(termp_d1);  DECL_PREPOST(termp_d1);
 DECL_PREPOST(termp_dq);  DECL_PREPOST(termp_dq);
 DECL_PREPOST(termp_em);  DECL_PREPOST(termp_em);
Line 102  DECL_PREPOST(termp_fd);
Line 114  DECL_PREPOST(termp_fd);
 DECL_PREPOST(termp_fl);  DECL_PREPOST(termp_fl);
 DECL_PREPOST(termp_fn);  DECL_PREPOST(termp_fn);
 DECL_PREPOST(termp_ft);  DECL_PREPOST(termp_ft);
   DECL_PREPOST(termp_ic);
   DECL_PREPOST(termp_in);
 DECL_PREPOST(termp_it);  DECL_PREPOST(termp_it);
 DECL_PREPOST(termp_nm);  DECL_PREPOST(termp_nm);
 DECL_PREPOST(termp_op);  DECL_PREPOST(termp_op);
 DECL_PREPOST(termp_pa);  DECL_PREPOST(termp_pa);
 DECL_PREPOST(termp_pf);  DECL_PREPOST(termp_pf);
 DECL_PREPOST(termp_qo);  DECL_PREPOST(termp_pq);
 DECL_PREPOST(termp_qq);  DECL_PREPOST(termp_qq);
 DECL_PREPOST(termp_sh);  DECL_PREPOST(termp_sh);
 DECL_PREPOST(termp_ss);  DECL_PREPOST(termp_ss);
Line 116  DECL_PREPOST(termp_sx);
Line 130  DECL_PREPOST(termp_sx);
 DECL_PREPOST(termp_va);  DECL_PREPOST(termp_va);
 DECL_PREPOST(termp_vt);  DECL_PREPOST(termp_vt);
   
 DECL_PRE(termp_bd);  DECL_PRE(termp_at);
   DECL_PRE(termp_bsx);
 DECL_PRE(termp_bx);  DECL_PRE(termp_bx);
 DECL_PRE(termp_ex);  DECL_PRE(termp_ex);
 DECL_PRE(termp_nd);  DECL_PRE(termp_nd);
Line 124  DECL_PRE(termp_ns);
Line 139  DECL_PRE(termp_ns);
 DECL_PRE(termp_nx);  DECL_PRE(termp_nx);
 DECL_PRE(termp_ox);  DECL_PRE(termp_ox);
 DECL_PRE(termp_pp);  DECL_PRE(termp_pp);
   DECL_PRE(termp_rv);
   DECL_PRE(termp_st);
 DECL_PRE(termp_ud);  DECL_PRE(termp_ud);
 DECL_PRE(termp_xr);  DECL_PRE(termp_xr);
   
Line 139  const struct termact __termacts[MDOC_MAX] = {
Line 156  const struct termact __termacts[MDOC_MAX] = {
         { termp_pp_pre, NULL }, /* Pp */          { termp_pp_pre, NULL }, /* Pp */
         { termp_d1_pre, termp_d1_post }, /* D1 */          { termp_d1_pre, termp_d1_post }, /* D1 */
         { NULL, NULL }, /* Dl */          { NULL, NULL }, /* Dl */
         { termp_bd_pre, NULL }, /* Bd */          { termp_bd_pre, termp_bd_post }, /* Bd */
         { NULL, NULL }, /* Ed */          { NULL, NULL }, /* Ed */
         { NULL, termp_bl_post }, /* Bl */          { NULL, termp_bl_post }, /* Bl */
         { NULL, NULL }, /* El */          { NULL, NULL }, /* El */
Line 147  const struct termact __termacts[MDOC_MAX] = {
Line 164  const struct termact __termacts[MDOC_MAX] = {
         { NULL, NULL }, /* Ad */          { NULL, NULL }, /* Ad */
         { NULL, NULL }, /* An */          { NULL, NULL }, /* An */
         { termp_ar_pre, termp_ar_post }, /* Ar */          { termp_ar_pre, termp_ar_post }, /* Ar */
         { NULL, NULL }, /* Cd */          { termp_cd_pre, termp_cd_post }, /* Cd */
         { NULL, NULL }, /* Cm */          { termp_cm_pre, termp_cm_post }, /* Cm */
         { NULL, NULL }, /* Dv */          { NULL, NULL }, /* Dv */
         { NULL, NULL }, /* Er */          { NULL, NULL }, /* Er */
         { NULL, NULL }, /* Ev */          { NULL, NULL }, /* Ev */
Line 158  const struct termact __termacts[MDOC_MAX] = {
Line 175  const struct termact __termacts[MDOC_MAX] = {
         { termp_fl_pre, termp_fl_post }, /* Fl */          { termp_fl_pre, termp_fl_post }, /* Fl */
         { termp_fn_pre, termp_fn_post }, /* Fn */          { termp_fn_pre, termp_fn_post }, /* Fn */
         { termp_ft_pre, termp_ft_post }, /* Ft */          { termp_ft_pre, termp_ft_post }, /* Ft */
         { NULL, NULL }, /* Ic */          { termp_ic_pre, termp_ic_post }, /* Ic */
         { NULL, NULL }, /* In */          { termp_in_pre, termp_in_post }, /* In */
         { NULL, NULL }, /* Li */          { NULL, NULL }, /* Li */
         { termp_nd_pre, NULL }, /* Nd */          { termp_nd_pre, NULL }, /* Nd */
         { termp_nm_pre, termp_nm_post }, /* Nm */          { termp_nm_pre, termp_nm_post }, /* Nm */
         { termp_op_pre, termp_op_post }, /* Op */          { termp_op_pre, termp_op_post }, /* Op */
         { NULL, NULL }, /* Ot */          { NULL, NULL }, /* Ot */
         { termp_pa_pre, termp_pa_post }, /* Pa */          { termp_pa_pre, termp_pa_post }, /* Pa */
         { NULL, NULL }, /* Rv */          { termp_rv_pre, NULL }, /* Rv */
         { NULL, NULL }, /* St */          { termp_st_pre, NULL }, /* St */
         { termp_va_pre, termp_va_post }, /* Va */          { termp_va_pre, termp_va_post }, /* Va */
         { termp_vt_pre, termp_vt_post }, /* Vt */          { termp_vt_pre, termp_vt_post }, /* Vt */
         { termp_xr_pre, NULL }, /* Xr */          { termp_xr_pre, NULL }, /* Xr */
Line 183  const struct termact __termacts[MDOC_MAX] = {
Line 200  const struct termact __termacts[MDOC_MAX] = {
         { NULL, NULL }, /* %T */          { NULL, NULL }, /* %T */
         { NULL, NULL }, /* %V */          { NULL, NULL }, /* %V */
         { NULL, NULL }, /* Ac */          { NULL, NULL }, /* Ac */
         { NULL, NULL }, /* Ao */          { termp_aq_pre, termp_aq_post }, /* Ao */
         { termp_aq_pre, termp_aq_post }, /* Aq */          { termp_aq_pre, termp_aq_post }, /* Aq */
         { NULL, NULL }, /* At */          { termp_at_pre, NULL }, /* At */
         { NULL, NULL }, /* Bc */          { NULL, NULL }, /* Bc */
         { NULL, NULL }, /* Bf */          { NULL, NULL }, /* Bf */
         { NULL, NULL }, /* Bo */          { termp_bq_pre, termp_bq_post }, /* Bo */
         { NULL, NULL }, /* Bq */          { termp_bq_pre, termp_bq_post }, /* Bq */
         { NULL, NULL }, /* Bsx */          { termp_bsx_pre, NULL }, /* Bsx */
         { termp_bx_pre, NULL }, /* Bx */          { termp_bx_pre, NULL }, /* Bx */
         { NULL, NULL }, /* Db */          { NULL, NULL }, /* Db */
         { NULL, NULL }, /* Dc */          { NULL, NULL }, /* Dc */
         { NULL, NULL }, /* Do */          { termp_dq_pre, termp_dq_post }, /* Do */
         { termp_dq_pre, termp_dq_post }, /* Dq */          { termp_dq_pre, termp_dq_post }, /* Dq */
         { NULL, NULL }, /* Ec */          { NULL, NULL }, /* Ec */
         { NULL, NULL }, /* Ef */          { NULL, NULL }, /* Ef */
Line 208  const struct termact __termacts[MDOC_MAX] = {
Line 225  const struct termact __termacts[MDOC_MAX] = {
         { termp_ox_pre, NULL }, /* Ox */          { termp_ox_pre, NULL }, /* Ox */
         { NULL, NULL }, /* Pc */          { NULL, NULL }, /* Pc */
         { termp_pf_pre, termp_pf_post }, /* Pf */          { termp_pf_pre, termp_pf_post }, /* Pf */
         { NULL, NULL }, /* Po */          { termp_pq_pre, termp_pq_post }, /* Po */
         { NULL, NULL }, /* Pq */          { termp_pq_pre, termp_pq_post }, /* Pq */
         { NULL, NULL }, /* Qc */          { NULL, NULL }, /* Qc */
         { NULL, NULL }, /* Ql */          { NULL, NULL }, /* Ql */
         { termp_qo_pre, termp_qo_post }, /* Qo */          { termp_qq_pre, termp_qq_post }, /* Qo */
         { termp_qq_pre, termp_qq_post }, /* Qq */          { termp_qq_pre, termp_qq_post }, /* Qq */
         { NULL, NULL }, /* Re */          { NULL, NULL }, /* Re */
         { NULL, NULL }, /* Rs */          { NULL, NULL }, /* Rs */
         { NULL, NULL }, /* Sc */          { NULL, NULL }, /* Sc */
         { NULL, NULL }, /* So */          { termp_sq_pre, termp_sq_post }, /* So */
         { termp_sq_pre, termp_sq_post }, /* Sq */          { termp_sq_pre, termp_sq_post }, /* Sq */
         { NULL, NULL }, /* Sm */          { NULL, NULL }, /* Sm */
         { termp_sx_pre, termp_sx_post }, /* Sx */          { termp_sx_pre, termp_sx_post }, /* Sx */
Line 242  const struct termact *termacts = __termacts;
Line 259  const struct termact *termacts = __termacts;
   
   
 static size_t  static size_t
 arg_offset(const char *v)  arg_width(const struct mdoc_arg *arg)
 {  {
         if (0 == strcmp(v, "indent"))  
           /* TODO */
           assert(*arg->value);
           return(strlen(*arg->value));
   }
   
   
   static size_t
   arg_offset(const struct mdoc_arg *arg)
   {
   
           /* TODO */
           assert(*arg->value);
           if (0 == strcmp(*arg->value, "indent"))
                 return(INDENT);                  return(INDENT);
         if (0 == strcmp(v, "indent-two"))          if (0 == strcmp(*arg->value, "indent-two"))
                 return(INDENT * 2);                  return(INDENT * 2);
   
         /* TODO */          return(strlen(*arg->value));
         return(0);  
 }  }
   
   
Line 308  termp_it_post(DECL_ARGS)
Line 337  termp_it_post(DECL_ARGS)
         const struct mdoc_node *n, *it;          const struct mdoc_node *n, *it;
         const struct mdoc_block *bl;          const struct mdoc_block *bl;
         int              i;          int              i;
         size_t           width;          size_t           width, offset;
   
         /*          /*
          * This (and termp_it_pre()) are the most complicated functions           * This (and termp_it_pre()) are the most complicated functions
Line 339  termp_it_post(DECL_ARGS)
Line 368  termp_it_post(DECL_ARGS)
         /* If `-tag', adjust our margins accordingly. */          /* If `-tag', adjust our margins accordingly. */
   
         if (arg_hasattr(MDOC_Tag, bl->argc, bl->argv)) {          if (arg_hasattr(MDOC_Tag, bl->argc, bl->argv)) {
                   flushln(p);
   
                   /* FIXME: this should auto-size. */
                 i = arg_getattr(MDOC_Width, bl->argc, bl->argv);                  i = arg_getattr(MDOC_Width, bl->argc, bl->argv);
                 assert(i >= 0);                  width = i >= 0 ? arg_width(&bl->argv[i]) : 10;
                 assert(1 == bl->argv[i].sz);  
                 width = strlen(*bl->argv[i].value); /* XXX */  
   
                   /* FIXME: nesting!  Should happen at block. */
                   i = arg_getattr(MDOC_Offset, bl->argc, bl->argv);
                   offset = i >= 0 ? arg_width(&bl->argv[i]) : 0;
   
                 if (MDOC_HEAD == node->type) {                  if (MDOC_HEAD == node->type) {
                         flushln(p);  
                         /* FIXME: nested lists. */  
                         p->rmargin = p->maxrmargin;                          p->rmargin = p->maxrmargin;
                           p->offset -= offset;
                         p->flags &= ~TERMP_NOBREAK;                          p->flags &= ~TERMP_NOBREAK;
                 } else {                  } else {
                         flushln(p);                          p->offset -= width;
                         p->offset -= width + 1;  
                         p->flags &= ~TERMP_NOLPAD;                          p->flags &= ~TERMP_NOLPAD;
                 }                  }
                 return;  
         }          }
   
         if (arg_hasattr(MDOC_Ohang, bl->argc, bl->argv)) {          if (arg_hasattr(MDOC_Ohang, bl->argc, bl->argv)) {
                 i = arg_getattr(MDOC_Offset, bl->argc, bl->argv);                  i = arg_getattr(MDOC_Offset, bl->argc, bl->argv);
                 width = 0;                  offset = i >= 0 ? arg_offset(&bl->argv[i]) : 0;
                 if (i >= 0) {  
                         assert(1 == bl->argv[i].sz);  
                         width = arg_offset(*bl->argv[i].value);  
                 }  
   
                 flushln(p);                  flushln(p);
                 p->offset -= width;                  p->offset -= offset;
                 return;                  return;
         }          }
 }  }
Line 379  termp_it_pre(DECL_ARGS)
Line 406  termp_it_pre(DECL_ARGS)
         const struct mdoc_node *n, *it;          const struct mdoc_node *n, *it;
         const struct mdoc_block *bl;          const struct mdoc_block *bl;
         int              i;          int              i;
         size_t           width;          size_t           width, offset;
   
         /*          /*
          * Also see termp_it_post() for general comments.           * Also see termp_it_post() for general comments.
Line 420  termp_it_pre(DECL_ARGS)
Line 447  termp_it_pre(DECL_ARGS)
         assert(MDOC_HEAD == node->type          assert(MDOC_HEAD == node->type
                         || MDOC_BODY == node->type);                          || MDOC_BODY == node->type);
   
           /* FIXME: see termp_it_post(). */
   
         /* If `-tag', adjust our margins accordingly. */          /* If `-tag', adjust our margins accordingly. */
   
         if (arg_hasattr(MDOC_Tag, bl->argc, bl->argv)) {          if (arg_hasattr(MDOC_Tag, bl->argc, bl->argv)) {
                   p->flags |= TERMP_NOSPACE;
   
                 i = arg_getattr(MDOC_Width, bl->argc, bl->argv);                  i = arg_getattr(MDOC_Width, bl->argc, bl->argv);
                 assert(i >= 0); /* XXX */                  width = i >= 0 ? arg_width(&bl->argv[i]) : 10;
                 assert(1 == bl->argv[i].sz);  
                 width = strlen(*bl->argv[i].value); /* XXX */  
   
                 /* FIXME: nested lists. */                  i = arg_getattr(MDOC_Offset, bl->argc, bl->argv);
                   offset = i >= 0 ? arg_offset(&bl->argv[i]) : 0;
   
                 if (MDOC_HEAD == node->type) {                  if (MDOC_HEAD == node->type) {
                         p->flags |= TERMP_NOBREAK;                          p->flags |= TERMP_NOBREAK;
                         p->flags |= TERMP_NOSPACE;                          p->offset += offset;
                         p->rmargin = p->offset + width;                          p->rmargin = p->offset + width;
                 } else {                  } else {
                         p->flags |= TERMP_NOSPACE;                          p->flags |= TERMP_NOSPACE;
                         p->flags |= TERMP_NOLPAD;                          p->flags |= TERMP_NOLPAD;
                         p->offset += width + 1;                          p->offset += width;
                 }                  }
                 return(1);                  return(1);
         }          }
Line 445  termp_it_pre(DECL_ARGS)
Line 475  termp_it_pre(DECL_ARGS)
         /* If `-ohang', adjust left-margin. */          /* If `-ohang', adjust left-margin. */
   
         if (arg_hasattr(MDOC_Ohang, bl->argc, bl->argv)) {          if (arg_hasattr(MDOC_Ohang, bl->argc, bl->argv)) {
                 width = 0;  
                 i = arg_getattr(MDOC_Offset, bl->argc, bl->argv);                  i = arg_getattr(MDOC_Offset, bl->argc, bl->argv);
                 if (i >= 0) {                  offset = i >= 0 ? arg_offset(&bl->argv[i]) : 0;
                         assert(1 == bl->argv[i].sz);  
                         width = arg_offset(*bl->argv[i].value);  
                 }  
   
                 p->flags |= TERMP_NOSPACE;                  p->flags |= TERMP_NOSPACE;
                 p->offset += width;                  p->offset += offset;
                 return(1);                  return(1);
         }          }
   
Line 534  termp_ar_post(DECL_ARGS)
Line 560  termp_ar_post(DECL_ARGS)
   
 /* ARGSUSED */  /* ARGSUSED */
 static int  static int
   termp_st_pre(DECL_ARGS)
   {
           const char      *tp;
   
           assert(1 == node->data.elem.argc);
   
           tp = mdoc_st2a(node->data.elem.argv[0].arg);
           word(p, tp);
   
           return(1);
   }
   
   
   /* ARGSUSED */
   static int
   termp_rv_pre(DECL_ARGS)
   {
           int              i;
   
           i = arg_getattr(MDOC_Std, node->data.elem.argc,
                           node->data.elem.argv);
           assert(i >= 0);
   
           newln(p);
           word(p, "The");
   
           p->flags |= ttypes[TTYPE_FUNC_NAME];
           word(p, *node->data.elem.argv[i].value);
           p->flags &= ~ttypes[TTYPE_FUNC_NAME];
   
           word(p, "() function returns the value 0 if successful;");
           word(p, "otherwise the value -1 is returned and the");
           word(p, "global variable");
   
           p->flags |= ttypes[TTYPE_VAR_DECL];
           word(p, "errno");
           p->flags &= ~ttypes[TTYPE_VAR_DECL];
   
           word(p, "is set to indicate the error.");
   
           return(1);
   }
   
   
   /* ARGSUSED */
   static int
 termp_ex_pre(DECL_ARGS)  termp_ex_pre(DECL_ARGS)
 {  {
         int              i;          int              i;
Line 922  termp_bd_pre(DECL_ARGS)
Line 994  termp_bd_pre(DECL_ARGS)
 {  {
         const struct mdoc_block *bl;          const struct mdoc_block *bl;
         const struct mdoc_node *n;          const struct mdoc_node *n;
           int              i;
   
         if (MDOC_BLOCK == node->type) {          if (MDOC_BLOCK == node->type) {
                 vspace(p);                  vspace(p);
Line 932  termp_bd_pre(DECL_ARGS)
Line 1005  termp_bd_pre(DECL_ARGS)
         assert(MDOC_BLOCK == node->parent->type);          assert(MDOC_BLOCK == node->parent->type);
   
         bl = &node->parent->data.block;          bl = &node->parent->data.block;
   
           i = arg_getattr(MDOC_Offset, bl->argc, bl->argv);
           if (-1 != i) {
                   assert(1 == bl->argv[i].sz);
                   p->offset += arg_offset(&bl->argv[i]);
           }
   
         if ( ! arg_hasattr(MDOC_Literal, bl->argc, bl->argv))          if ( ! arg_hasattr(MDOC_Literal, bl->argc, bl->argv))
                 return(1);                  return(1);
   
Line 953  termp_bd_pre(DECL_ARGS)
Line 1033  termp_bd_pre(DECL_ARGS)
   
   
 /* ARGSUSED */  /* ARGSUSED */
   static void
   termp_bd_post(DECL_ARGS)
   {
           int              i;
           const struct mdoc_block *bl;
   
           if (MDOC_BODY != node->type)
                   return;
   
           assert(MDOC_BLOCK == node->parent->type);
           bl = &node->parent->data.block;
   
           i = arg_getattr(MDOC_Offset, bl->argc, bl->argv);
           if (-1 != i) {
                   assert(1 == bl->argv[i].sz);
                   p->offset -= arg_offset(&bl->argv[i]);
           }
   }
   
   
   /* ARGSUSED */
 static int  static int
 termp_qq_pre(DECL_ARGS)  termp_qq_pre(DECL_ARGS)
 {  {
Line 979  termp_qq_post(DECL_ARGS)
Line 1080  termp_qq_post(DECL_ARGS)
   
 /* ARGSUSED */  /* ARGSUSED */
 static int  static int
   termp_bsx_pre(DECL_ARGS)
   {
   
           word(p, "BSDI BSD/OS");
           return(1);
   }
   
   
   /* ARGSUSED */
   static int
 termp_bx_pre(DECL_ARGS)  termp_bx_pre(DECL_ARGS)
 {  {
   
Line 1014  termp_sq_pre(DECL_ARGS)
Line 1125  termp_sq_pre(DECL_ARGS)
   
         if (MDOC_BODY != node->type)          if (MDOC_BODY != node->type)
                 return(1);                  return(1);
         word(p, "`");          word(p, "\'");
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         return(1);          return(1);
 }  }
Line 1109  termp_pa_post(DECL_ARGS)
Line 1220  termp_pa_post(DECL_ARGS)
   
 /* ARGSUSED */  /* ARGSUSED */
 static int  static int
 termp_qo_pre(DECL_ARGS)  termp_em_pre(DECL_ARGS)
 {  {
   
           p->flags |= ttypes[TTYPE_EMPH];
           return(1);
   }
   
   
   /* ARGSUSED */
   static void
   termp_em_post(DECL_ARGS)
   {
   
           p->flags &= ~ttypes[TTYPE_EMPH];
   }
   
   
   /* ARGSUSED */
   static int
   termp_cd_pre(DECL_ARGS)
   {
   
           p->flags |= ttypes[TTYPE_CONFIG];
           return(1);
   }
   
   
   /* ARGSUSED */
   static void
   termp_cd_post(DECL_ARGS)
   {
   
           p->flags &= ~ttypes[TTYPE_CONFIG];
   }
   
   
   /* ARGSUSED */
   static int
   termp_cm_pre(DECL_ARGS)
   {
   
           p->flags |= ttypes[TTYPE_CMD_FLAG];
           return(1);
   }
   
   
   /* ARGSUSED */
   static void
   termp_cm_post(DECL_ARGS)
   {
   
           p->flags &= ~ttypes[TTYPE_CMD_FLAG];
   }
   
   
   /* ARGSUSED */
   static int
   termp_ic_pre(DECL_ARGS)
   {
   
           p->flags |= ttypes[TTYPE_CMD];
           return(1);
   }
   
   
   /* ARGSUSED */
   static void
   termp_ic_post(DECL_ARGS)
   {
   
           p->flags &= ~ttypes[TTYPE_CMD];
   }
   
   
   /* ARGSUSED */
   static int
   termp_in_pre(DECL_ARGS)
   {
   
           p->flags |= ttypes[TTYPE_INCLUDE];
           return(1);
   }
   
   
   /* ARGSUSED */
   static void
   termp_in_post(DECL_ARGS)
   {
   
           p->flags &= ~ttypes[TTYPE_INCLUDE];
   }
   
   
   /* ARGSUSED */
   static int
   termp_at_pre(DECL_ARGS)
   {
           enum mdoc_att    c;
   
           c = ATT_DEFAULT;
           if (node->child) {
                   assert(MDOC_TEXT == node->child->type);
                   c = mdoc_atoatt(node->child->data.text.string);
           }
   
           word(p, mdoc_att2a(c));
           return(0);
   }
   
   
   /* ARGSUSED */
   static int
   termp_bq_pre(DECL_ARGS)
   {
   
         if (MDOC_BODY != node->type)          if (MDOC_BODY != node->type)
                 return(1);                  return(1);
         word(p, "\"");          word(p, "[");
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         return(1);          return(1);
 }  }
Line 1122  termp_qo_pre(DECL_ARGS)
Line 1345  termp_qo_pre(DECL_ARGS)
   
 /* ARGSUSED */  /* ARGSUSED */
 static void  static void
 termp_qo_post(DECL_ARGS)  termp_bq_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, "\"");          word(p, "]");
 }  }
   
   
 /* ARGSUSED */  /* ARGSUSED */
 static int  static int
 termp_em_pre(DECL_ARGS)  termp_pq_pre(DECL_ARGS)
 {  {
   
         p->flags |= ttypes[TTYPE_EMPH];          if (MDOC_BODY != node->type)
                   return(1);
           word(p, "(");
           p->flags |= TERMP_NOSPACE;
         return(1);          return(1);
 }  }
   
   
 /* ARGSUSED */  /* ARGSUSED */
 static void  static void
 termp_em_post(DECL_ARGS)  termp_pq_post(DECL_ARGS)
 {  {
   
         p->flags &= ~ttypes[TTYPE_EMPH];          if (MDOC_BODY != node->type)
                   return;
           p->flags |= TERMP_NOSPACE;
           word(p, ")");
 }  }
   
   

Legend:
Removed from v.1.11  
changed lines
  Added in v.1.15

CVSweb