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

Diff for /mandoc/term.c between version 1.10 and 1.14

version 1.10, 2009/02/23 09:33:34 version 1.14, 2009/02/24 14:52:55
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 43 
Line 44 
 #define TTYPE_LINK        9  #define TTYPE_LINK        9
 #define TTYPE_SSECTION    10  #define TTYPE_SSECTION    10
 #define TTYPE_FILE        11  #define TTYPE_FILE        11
 #define TTYPE_NMAX        12  #define TTYPE_EMPH        12
   #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 63  const int ttypes[TTYPE_NMAX] = {
Line 68  const int ttypes[TTYPE_NMAX] = {
         TERMP_UNDERLINE,        /* TTYPE_FUNC_ARG */          TERMP_UNDERLINE,        /* TTYPE_FUNC_ARG */
         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_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 92  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_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_fa);  DECL_PREPOST(termp_fa);
 DECL_PREPOST(termp_fd);  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_qq);  DECL_PREPOST(termp_qq);
 DECL_PREPOST(termp_sh);  DECL_PREPOST(termp_sh);
 DECL_PREPOST(termp_ss);  DECL_PREPOST(termp_ss);
Line 112  DECL_PREPOST(termp_sx);
Line 129  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_bx);  DECL_PRE(termp_bx);
 DECL_PRE(termp_ex);  DECL_PRE(termp_ex);
 DECL_PRE(termp_nd);  DECL_PRE(termp_nd);
Line 120  DECL_PRE(termp_ns);
Line 137  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 135  const struct termact __termacts[MDOC_MAX] = {
Line 154  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 143  const struct termact __termacts[MDOC_MAX] = {
Line 162  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 154  const struct termact __termacts[MDOC_MAX] = {
Line 173  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 179  const struct termact __termacts[MDOC_MAX] = {
Line 198  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 */          { NULL, NULL }, /* Bo */
Line 194  const struct termact __termacts[MDOC_MAX] = {
Line 213  const struct termact __termacts[MDOC_MAX] = {
         { 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 */
         { NULL, NULL }, /* Em */          { termp_em_pre, termp_em_post }, /* Em */
         { NULL, NULL }, /* Eo */          { NULL, NULL }, /* Eo */
         { NULL, NULL }, /* Fx */          { NULL, NULL }, /* Fx */
         { NULL, NULL }, /* Ms */          { NULL, NULL }, /* Ms */
Line 208  const struct termact __termacts[MDOC_MAX] = {
Line 227  const struct termact __termacts[MDOC_MAX] = {
         { NULL, NULL }, /* Pq */          { NULL, NULL }, /* Pq */
         { NULL, NULL }, /* Qc */          { NULL, NULL }, /* Qc */
         { NULL, NULL }, /* Ql */          { NULL, NULL }, /* Ql */
         { NULL, NULL }, /* Qo */          { termp_qo_pre, termp_qo_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 */
Line 238  const struct termact *termacts = __termacts;
Line 257  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 304  termp_it_post(DECL_ARGS)
Line 335  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 335  termp_it_post(DECL_ARGS)
Line 366  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 375  termp_it_pre(DECL_ARGS)
Line 404  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 416  termp_it_pre(DECL_ARGS)
Line 445  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 441  termp_it_pre(DECL_ARGS)
Line 473  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 530  termp_ar_post(DECL_ARGS)
Line 558  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 918  termp_bd_pre(DECL_ARGS)
Line 992  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 928  termp_bd_pre(DECL_ARGS)
Line 1003  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 949  termp_bd_pre(DECL_ARGS)
Line 1031  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 1010  termp_sq_pre(DECL_ARGS)
Line 1113  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 1100  termp_pa_post(DECL_ARGS)
Line 1203  termp_pa_post(DECL_ARGS)
 {  {
   
         p->flags &= ~ttypes[TTYPE_FILE];          p->flags &= ~ttypes[TTYPE_FILE];
   }
   
   
   /* ARGSUSED */
   static int
   termp_qo_pre(DECL_ARGS)
   {
   
           if (MDOC_BODY != node->type)
                   return(1);
           word(p, "\"");
           p->flags |= TERMP_NOSPACE;
           return(1);
   }
   
   
   /* ARGSUSED */
   static void
   termp_qo_post(DECL_ARGS)
   {
   
           if (MDOC_BODY != node->type)
                   return;
           p->flags |= TERMP_NOSPACE;
           word(p, "\"");
   }
   
   
   /* ARGSUSED */
   static int
   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);
 }  }

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.14

CVSweb