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

Diff for /mandoc/mdoc.c between version 1.18 and 1.23

version 1.18, 2009/01/05 17:57:08 version 1.23, 2009/01/08 14:55:59
Line 91  const struct mdoc_macro __mdoc_macros[MDOC_MAX] = {
Line 91  const struct mdoc_macro __mdoc_macros[MDOC_MAX] = {
         { macro_scoped, 0 }, /* Sh */          { macro_scoped, 0 }, /* Sh */
         { macro_scoped, 0 }, /* Ss */          { macro_scoped, 0 }, /* Ss */
         { macro_text, 0 }, /* Pp */          { macro_text, 0 }, /* Pp */
         { macro_scoped_line, 0 }, /* D1 */          { macro_scoped_line, MDOC_PARSED }, /* D1 */
         { macro_scoped_line, 0 }, /* Dl */          { macro_scoped_line, MDOC_PARSED }, /* Dl */
         { macro_scoped, MDOC_EXPLICIT }, /* Bd */          { macro_scoped, MDOC_EXPLICIT }, /* Bd */
         { macro_close_explicit, 0 }, /* Ed */          { macro_close_explicit, 0 }, /* Ed */
         { macro_scoped, MDOC_EXPLICIT }, /* Bl */          { macro_scoped, MDOC_EXPLICIT }, /* Bl */
         { macro_close_explicit, 0 }, /* El */          { macro_close_explicit, 0 }, /* El */
         { macro_scoped, MDOC_NESTED }, /* It */          { macro_scoped, MDOC_NESTED | MDOC_PARSED }, /* It */
         { macro_text, MDOC_CALLABLE }, /* Ad */          { macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Ad */
         { macro_constant, 0 }, /* An */          { macro_constant, MDOC_PARSED }, /* An */
         { macro_text, MDOC_CALLABLE }, /* Ar */          { macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Ar */
         { macro_constant, MDOC_QUOTABLE }, /* Cd */          { macro_constant, MDOC_QUOTABLE }, /* Cd */
         { macro_text, MDOC_CALLABLE }, /* Cm */          { macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Cm */
         { macro_text, MDOC_CALLABLE }, /* Dv */          { macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Dv */
         { macro_text, MDOC_CALLABLE }, /* Er */          { macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Er */
         { macro_text, MDOC_CALLABLE }, /* Ev */          { macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Ev */
         { macro_constant, 0 }, /* Ex */          { macro_constant, 0 }, /* Ex */
         { macro_text, MDOC_CALLABLE | MDOC_QUOTABLE }, /* Fa */          { macro_text, MDOC_CALLABLE | MDOC_QUOTABLE | MDOC_PARSED }, /* Fa */
         { macro_constant, 0 }, /* Fd */          { macro_constant, 0 }, /* Fd */
         { macro_text, MDOC_CALLABLE }, /* Fl */          { macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Fl */
         { macro_text, MDOC_CALLABLE | MDOC_QUOTABLE }, /* Fn */          { macro_text, MDOC_CALLABLE | MDOC_QUOTABLE | MDOC_PARSED }, /* Fn */
         { macro_text, 0 }, /* Ft */          { macro_text, MDOC_PARSED }, /* Ft */
         { macro_text, MDOC_CALLABLE }, /* Ic */          { macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Ic */
         { macro_constant, 0 }, /* In */          { macro_constant, 0 }, /* In */
         { macro_text, MDOC_CALLABLE }, /* Li */          { macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Li */
         { macro_constant, 0 }, /* Nd */          { macro_constant, 0 }, /* Nd */
         { macro_text, MDOC_CALLABLE }, /* Nm */          { macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Nm */
         { macro_scoped_line, MDOC_CALLABLE }, /* Op */          { macro_scoped_line, MDOC_CALLABLE | MDOC_PARSED }, /* Op */
         { macro_obsolete, 0 }, /* Ot */          { macro_obsolete, 0 }, /* Ot */
         { macro_text, MDOC_CALLABLE }, /* Pa */          { macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Pa */
         { macro_constant, 0 }, /* Rv */          { macro_constant, 0 }, /* Rv */
         { macro_constant, 0 }, /* St */          /* XXX - .St supposed to be (but isn't) callable. */
         { macro_text, MDOC_CALLABLE }, /* Va */          { macro_constant_delimited, MDOC_PARSED }, /* St */
         { macro_text, MDOC_CALLABLE }, /* Vt */          { macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Va */
         { macro_text, MDOC_CALLABLE }, /* Xr */          { macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Vt */
           { macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Xr */
         { macro_constant, MDOC_QUOTABLE }, /* %A */          { macro_constant, MDOC_QUOTABLE }, /* %A */
         { macro_constant, MDOC_QUOTABLE }, /* %B */          { macro_constant, MDOC_QUOTABLE }, /* %B */
         { macro_constant, MDOC_QUOTABLE }, /* %D */          { macro_constant, MDOC_QUOTABLE }, /* %D */
Line 136  const struct mdoc_macro __mdoc_macros[MDOC_MAX] = {
Line 137  const struct mdoc_macro __mdoc_macros[MDOC_MAX] = {
         { macro_constant, MDOC_QUOTABLE }, /* %R */          { macro_constant, MDOC_QUOTABLE }, /* %R */
         { macro_constant, MDOC_QUOTABLE }, /* %T */          { macro_constant, MDOC_QUOTABLE }, /* %T */
         { macro_constant, MDOC_QUOTABLE }, /* %V */          { macro_constant, MDOC_QUOTABLE }, /* %V */
         { macro_close_explicit, MDOC_CALLABLE }, /* Ac */          { macro_close_explicit, MDOC_CALLABLE | MDOC_PARSED }, /* Ac */
         { macro_constant_scoped, MDOC_CALLABLE }, /* Ao */          { macro_constant_scoped, MDOC_CALLABLE | MDOC_PARSED }, /* Ao */
         { macro_scoped_line, MDOC_CALLABLE }, /* Aq */          { macro_scoped_line, MDOC_CALLABLE | MDOC_PARSED }, /* Aq */
         { macro_constant, 0 }, /* At */          { macro_constant, 0 }, /* At */
         { macro_close_explicit, MDOC_CALLABLE }, /* Bc */          { macro_close_explicit, MDOC_CALLABLE | MDOC_PARSED }, /* Bc */
         { macro_scoped, MDOC_EXPLICIT }, /* Bf */          { macro_scoped, MDOC_EXPLICIT }, /* Bf */
         { macro_constant_scoped, MDOC_CALLABLE }, /* Bo */          { macro_constant_scoped, MDOC_CALLABLE | MDOC_PARSED }, /* Bo */
         { macro_scoped_line, MDOC_CALLABLE }, /* Bq */          { macro_scoped_line, MDOC_CALLABLE | MDOC_PARSED }, /* Bq */
         { macro_constant_delimited, 0 }, /* Bsx */          { macro_constant_delimited, MDOC_PARSED }, /* Bsx */
         { macro_constant_delimited, 0 }, /* Bx */          { macro_constant_delimited, MDOC_PARSED }, /* Bx */
         { macro_constant, 0 }, /* Db */          { macro_constant, 0 }, /* Db */
         { macro_close_explicit, MDOC_CALLABLE }, /* Dc */          { macro_close_explicit, MDOC_CALLABLE | MDOC_PARSED }, /* Dc */
         { macro_constant_scoped, MDOC_CALLABLE }, /* Do */          { macro_constant_scoped, MDOC_CALLABLE | MDOC_PARSED }, /* Do */
         { macro_scoped_line, MDOC_CALLABLE }, /* Dq */          { macro_scoped_line, MDOC_CALLABLE | MDOC_PARSED }, /* Dq */
         { macro_close_explicit, MDOC_CALLABLE }, /* Ec */          { macro_close_explicit, MDOC_CALLABLE | MDOC_PARSED }, /* Ec */
         { macro_close_explicit, 0 }, /* Ef */          { macro_close_explicit, 0 }, /* Ef */
         { macro_text, MDOC_CALLABLE }, /* Em */          { macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Em */
         { macro_constant_scoped, MDOC_CALLABLE }, /* Eo */          { macro_constant_scoped, MDOC_CALLABLE | MDOC_PARSED }, /* Eo */
         { macro_constant_delimited, 0 }, /* Fx */          { macro_constant_delimited, MDOC_PARSED }, /* Fx */
         { macro_text, 0 }, /* Ms */          { macro_text, MDOC_PARSED }, /* Ms */
         { macro_constant_delimited, MDOC_CALLABLE }, /* No */          { macro_constant_delimited, MDOC_CALLABLE | MDOC_PARSED }, /* No */
         { macro_constant_delimited, MDOC_CALLABLE }, /* Ns */          { macro_constant_delimited, MDOC_CALLABLE | MDOC_PARSED }, /* Ns */
         { macro_constant_delimited, 0 }, /* Nx */          { macro_constant_delimited, MDOC_PARSED }, /* Nx */
         { macro_constant_delimited, 0 }, /* Ox */          { macro_constant_delimited, MDOC_PARSED }, /* Ox */
         { macro_close_explicit, MDOC_CALLABLE }, /* Pc */          { macro_close_explicit, MDOC_CALLABLE | MDOC_PARSED }, /* Pc */
         { macro_constant, 0 }, /* Pf */          { macro_constant, MDOC_PARSED }, /* Pf */
         { macro_constant_scoped, MDOC_CALLABLE }, /* Po */          { macro_constant_scoped, MDOC_CALLABLE | MDOC_PARSED }, /* Po */
         { macro_scoped_line, MDOC_CALLABLE }, /* Pq */          { macro_scoped_line, MDOC_CALLABLE | MDOC_PARSED }, /* Pq */
         { macro_close_explicit, MDOC_CALLABLE }, /* Qc */          { macro_close_explicit, MDOC_CALLABLE | MDOC_PARSED }, /* Qc */
         { macro_scoped_line, MDOC_CALLABLE }, /* Ql */          { macro_scoped_line, MDOC_CALLABLE | MDOC_PARSED }, /* Ql */
         { macro_constant_scoped, MDOC_CALLABLE }, /* Qo */          { macro_constant_scoped, MDOC_CALLABLE | MDOC_PARSED }, /* Qo */
         { macro_scoped_line, MDOC_CALLABLE }, /* Qq */          { macro_scoped_line, MDOC_CALLABLE | MDOC_PARSED }, /* Qq */
         { macro_close_explicit, 0 }, /* Re */          { macro_close_explicit, 0 }, /* Re */
         { macro_scoped, MDOC_EXPLICIT }, /* Rs */          { macro_scoped, MDOC_EXPLICIT }, /* Rs */
         { macro_close_explicit, MDOC_CALLABLE }, /* Sc */          { macro_close_explicit, MDOC_CALLABLE | MDOC_PARSED }, /* Sc */
         { macro_constant_scoped, MDOC_CALLABLE }, /* So */          { macro_constant_scoped, MDOC_CALLABLE | MDOC_PARSED }, /* So */
         { macro_scoped_line, MDOC_CALLABLE }, /* Sq */          { macro_scoped_line, MDOC_CALLABLE | MDOC_PARSED }, /* Sq */
         { macro_constant, 0 }, /* Sm */          { macro_constant, 0 }, /* Sm */
         { macro_text, MDOC_CALLABLE }, /* Sx */          { macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Sx */
         { macro_text, MDOC_CALLABLE }, /* Sy */          { macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Sy */
         { macro_text, MDOC_CALLABLE }, /* Tn */          { macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Tn */
         { macro_constant_delimited, 0 }, /* Ux */          { macro_constant_delimited, MDOC_PARSED }, /* Ux */
         { macro_close_explicit, MDOC_CALLABLE }, /* Xc */          { macro_close_explicit, MDOC_CALLABLE | MDOC_PARSED }, /* Xc */
         { macro_constant_scoped, MDOC_CALLABLE }, /* Xo */          { macro_constant_scoped, MDOC_CALLABLE | MDOC_PARSED }, /* Xo */
         { macro_scoped, MDOC_EXPLICIT }, /* Fo */ /* XXX - supposed to be (but isn't) callable. */          /* XXX - .Fo supposed to be (but isn't) callable. */
         { macro_close_explicit, 0 }, /* Fc */ /* XXX - supposed to be (but isn't) callable. */          { macro_scoped, MDOC_EXPLICIT | MDOC_PARSED }, /* Fo */
         { macro_constant_scoped, MDOC_CALLABLE }, /* Oo */          /* XXX - .Fc supposed to be (but isn't) callable. */
         { macro_close_explicit, MDOC_CALLABLE }, /* Oc */          { macro_close_explicit, MDOC_PARSED }, /* Fc */
           { macro_constant_scoped, MDOC_CALLABLE | MDOC_PARSED }, /* Oo */
           { macro_close_explicit, MDOC_CALLABLE | MDOC_PARSED }, /* Oc */
         { macro_scoped, MDOC_EXPLICIT }, /* Bk */          { macro_scoped, MDOC_EXPLICIT }, /* Bk */
         { macro_close_explicit, 0 }, /* Ek */          { macro_close_explicit, 0 }, /* Ek */
         { macro_constant, 0 }, /* Bt */          { macro_constant, 0 }, /* Bt */
Line 203  static void      argcpy(struct mdoc_arg *, 
Line 206  static void      argcpy(struct mdoc_arg *, 
                                 const struct mdoc_arg *);                                  const struct mdoc_arg *);
   
 static  void              mdoc_node_freelist(struct mdoc_node *);  static  void              mdoc_node_freelist(struct mdoc_node *);
 static  void              mdoc_node_append(struct mdoc *, int,  static  int               mdoc_node_append(struct mdoc *,
                                 struct mdoc_node *);                                  struct mdoc_node *);
 static  void              mdoc_elem_free(struct mdoc_elem *);  static  void              mdoc_elem_free(struct mdoc_elem *);
 static  void              mdoc_text_free(struct mdoc_text *);  static  void              mdoc_text_free(struct mdoc_text *);
Line 246  mdoc_alloc(void *data, const struct mdoc_cb *cb)
Line 249  mdoc_alloc(void *data, const struct mdoc_cb *cb)
   
   
 int  int
 mdoc_parseln(struct mdoc *mdoc, char *buf)  mdoc_endparse(struct mdoc *mdoc)
 {  {
   
           if (MDOC_HALT & mdoc->flags)
                   return(0);
           if (NULL == mdoc->first)
                   return(1);
   
           assert(mdoc->last);
           if ( ! macro_end(mdoc)) {
                   mdoc->flags |= MDOC_HALT;
                   return(0);
           }
           return(1);
   }
   
   
   int
   mdoc_parseln(struct mdoc *mdoc, int line, char *buf)
   {
         int               c, i;          int               c, i;
         char              tmp[5];          char              tmp[5];
   
           if (MDOC_HALT & mdoc->flags)
                   return(0);
   
         if ('.' != *buf) {          if ('.' != *buf) {
                 if (SEC_PROLOGUE == mdoc->sec_lastn)                  if (SEC_PROLOGUE != mdoc->sec_lastn) {
                         return(mdoc_err(mdoc, -1, 0, ERR_SYNTAX_NOTEXT));                          mdoc_word_alloc(mdoc, line, 0, buf);
                 mdoc_word_alloc(mdoc, 0, buf);                          mdoc->next = MDOC_NEXT_SIBLING;
                 mdoc->next = MDOC_NEXT_SIBLING;                          return(1);
                 return(1);                  }
                   return(mdoc_perr(mdoc, line, 0, ERR_SYNTAX_NOTEXT));
         }          }
   
         if (buf[1] && '\\' == buf[1])          if (buf[1] && '\\' == buf[1])
Line 267  mdoc_parseln(struct mdoc *mdoc, char *buf)
Line 292  mdoc_parseln(struct mdoc *mdoc, char *buf)
         while (buf[i] && ! isspace(buf[i]) && i < (int)sizeof(tmp))          while (buf[i] && ! isspace(buf[i]) && i < (int)sizeof(tmp))
                 i++;                  i++;
   
         if (i == (int)sizeof(tmp))          if (i == (int)sizeof(tmp)) {
                 return(mdoc_err(mdoc, -1, 1, ERR_MACRO_NOTSUP));                  mdoc->flags |= MDOC_HALT;
         else if (i <= 2)                  return(mdoc_perr(mdoc, line, 1, ERR_MACRO_NOTSUP));
                 return(mdoc_err(mdoc, -1, 1, ERR_MACRO_NOTSUP));          } else if (i <= 2) {
                   mdoc->flags |= MDOC_HALT;
                   return(mdoc_perr(mdoc, line, 1, ERR_MACRO_NOTSUP));
           }
   
         i--;          i--;
   
         (void)memcpy(tmp, buf + 1, (size_t)i);          (void)memcpy(tmp, buf + 1, (size_t)i);
         tmp[i++] = 0;          tmp[i++] = 0;
   
         if (MDOC_MAX == (c = mdoc_find(mdoc, tmp)))          if (MDOC_MAX == (c = mdoc_find(mdoc, tmp))) {
                 return(mdoc_err(mdoc, c, 1, ERR_MACRO_NOTSUP));                  mdoc->flags |= MDOC_HALT;
                   return(mdoc_perr(mdoc, line, 1, ERR_MACRO_NOTSUP));
           }
   
         while (buf[i] && isspace(buf[i]))          while (buf[i] && isspace(buf[i]))
                 i++;                  i++;
   
         return(mdoc_macro(mdoc, c, 1, &i, buf));          if ( ! mdoc_macro(mdoc, c, line, 1, &i, buf)) {
                   mdoc->flags |= MDOC_HALT;
                   return(0);
           }
           return(1);
 }  }
   
   
 void  void
 mdoc_msg(struct mdoc *mdoc, int pos, const char *fmt, ...)  mdoc_msg(struct mdoc *mdoc, const char *fmt, ...)
 {  {
         va_list          ap;          struct mdoc_node *n;
         char             buf[256];          va_list           ap;
           char              buf[256];
   
         if (NULL == mdoc->cb.mdoc_msg)          if (NULL == mdoc->cb.mdoc_msg)
                 return;                  return;
   
           n = mdoc->last;
           assert(n);
   
         va_start(ap, fmt);          va_start(ap, fmt);
         (void)vsnprintf(buf, sizeof(buf), fmt, ap);          (void)vsnprintf(buf, sizeof(buf), fmt, ap);
         va_end(ap);          va_end(ap);
   
         (*mdoc->cb.mdoc_msg)(mdoc->data, pos, buf);          (*mdoc->cb.mdoc_msg)(mdoc->data, n->line, n->pos, buf);
 }  }
   
   
 int  int
 mdoc_err(struct mdoc *mdoc, int tok, int pos, enum mdoc_err type)  mdoc_perr(struct mdoc *mdoc,
                   int line, int pos, enum mdoc_err type)
 {  {
   
         if (NULL == mdoc->cb.mdoc_err)          if (NULL == mdoc->cb.mdoc_err)
                 return(0);                  return(0);
         return((*mdoc->cb.mdoc_err)(mdoc->data, tok, pos, type));          return((*mdoc->cb.mdoc_err)(mdoc->data, line, pos, type));
 }  }
   
   
 int  int
 mdoc_warn(struct mdoc *mdoc, int tok, int pos, enum mdoc_warn type)  mdoc_pwarn(struct mdoc *mdoc,
                   int line, int pos, enum mdoc_warn type)
 {  {
   
         if (NULL == mdoc->cb.mdoc_warn)          if (NULL == mdoc->cb.mdoc_warn)
                 return(0);                  return(0);
         return((*mdoc->cb.mdoc_warn)(mdoc->data, tok, pos, type));          return((*mdoc->cb.mdoc_warn)(mdoc->data, line, pos, type));
 }  }
   
   
 int  int
 mdoc_macro(struct mdoc *mdoc, int tok, int ppos, int *pos, char *buf)  mdoc_macro(struct mdoc *mdoc, int tok,
                   int ln, int ppos, int *pos, char *buf)
 {  {
   
         if ( ! (MDOC_PROLOGUE & mdoc_macros[tok].flags) &&          if ( ! (MDOC_PROLOGUE & mdoc_macros[tok].flags) &&
                         SEC_PROLOGUE == mdoc->sec_lastn)                          SEC_PROLOGUE == mdoc->sec_lastn)
                 return(mdoc_err(mdoc, tok, ppos, ERR_SEC_PROLOGUE));                  return(mdoc_perr(mdoc, ln, ppos, ERR_SEC_PROLOGUE));
   
         if (NULL == (mdoc_macros[tok].fp)) {          if (NULL == (mdoc_macros[tok].fp))
                 (void)mdoc_err(mdoc, tok, ppos, ERR_MACRO_NOTSUP);                  return(mdoc_perr(mdoc, ln, ppos, ERR_MACRO_NOTSUP));
                 return(0);  
         }  
   
         if (1 != ppos && ! (MDOC_CALLABLE & mdoc_macros[tok].flags)) {          if (1 != ppos && ! (MDOC_CALLABLE & mdoc_macros[tok].flags))
                 (void)mdoc_err(mdoc, tok, ppos, ERR_MACRO_NOTCALL);                  return(mdoc_perr(mdoc, ln, ppos, ERR_MACRO_NOTCALL));
                 return(0);  
         }  
   
         return((*mdoc_macros[tok].fp)(mdoc, tok, ppos, pos, buf));          return((*mdoc_macros[tok].fp)(mdoc, tok, ln, ppos, pos, buf));
 }  }
   
   
 static void  static int
 mdoc_node_append(struct mdoc *mdoc, int pos, struct mdoc_node *p)  mdoc_node_append(struct mdoc *mdoc, struct mdoc_node *p)
 {  {
         const char       *nn, *on, *nt, *ot, *act;          const char       *nn, *on, *nt, *ot, *act;
   
Line 383  mdoc_node_append(struct mdoc *mdoc, int pos, struct md
Line 420  mdoc_node_append(struct mdoc *mdoc, int pos, struct md
   
         if (NULL == mdoc->first) {          if (NULL == mdoc->first) {
                 assert(NULL == mdoc->last);                  assert(NULL == mdoc->last);
                   if ( ! mdoc_valid_pre(mdoc, p))
                           return(0);
                   if ( ! mdoc_action_pre(mdoc, p))
                           return(0);
                 mdoc->first = p;                  mdoc->first = p;
                 mdoc->last = p;                  mdoc->last = p;
                 mdoc_msg(mdoc, pos, "parse: root %s `%s'", nt, nn);                  mdoc_msg(mdoc, "parse: root %s `%s'", nt, nn);
                 return;                  return(1);
         }          }
   
         switch (mdoc->last->type) {          switch (mdoc->last->type) {
Line 436  mdoc_node_append(struct mdoc *mdoc, int pos, struct md
Line 477  mdoc_node_append(struct mdoc *mdoc, int pos, struct md
                 /* NOTREACHED */                  /* NOTREACHED */
         }          }
   
         mdoc_msg(mdoc, pos, "parse: %s `%s' %s of %s `%s'",          if ( ! mdoc_valid_pre(mdoc, p))
                         nt, nn, act, ot, on);                  return(0);
           if ( ! mdoc_action_pre(mdoc, p))
                   return(0);
         mdoc->last = p;          mdoc->last = p;
           mdoc_msg(mdoc, "parse: %s of %s `%s'", act, ot, on);
           return(1);
 }  }
   
   
 void  int
 mdoc_tail_alloc(struct mdoc *mdoc, int pos, int tok)  mdoc_tail_alloc(struct mdoc *mdoc, int line, int pos, int tok)
 {  {
         struct mdoc_node *p;          struct mdoc_node *p;
   
Line 453  mdoc_tail_alloc(struct mdoc *mdoc, int pos, int tok)
Line 497  mdoc_tail_alloc(struct mdoc *mdoc, int pos, int tok)
   
         p = xcalloc(1, sizeof(struct mdoc_node));          p = xcalloc(1, sizeof(struct mdoc_node));
   
           p->line = line;
           p->pos = pos;
         p->type = MDOC_TAIL;          p->type = MDOC_TAIL;
         p->data.tail.tok = tok;          p->data.tail.tok = tok;
   
         mdoc_node_append(mdoc, pos, p);          return(mdoc_node_append(mdoc, p));
 }  }
   
   
 void  int
 mdoc_head_alloc(struct mdoc *mdoc, int pos, int tok)  mdoc_head_alloc(struct mdoc *mdoc, int line, int pos, int tok)
 {  {
         struct mdoc_node *p;          struct mdoc_node *p;
   
Line 470  mdoc_head_alloc(struct mdoc *mdoc, int pos, int tok)
Line 516  mdoc_head_alloc(struct mdoc *mdoc, int pos, int tok)
   
         p = xcalloc(1, sizeof(struct mdoc_node));          p = xcalloc(1, sizeof(struct mdoc_node));
   
           p->line = line;
           p->pos = pos;
         p->type = MDOC_HEAD;          p->type = MDOC_HEAD;
         p->data.head.tok = tok;          p->data.head.tok = tok;
   
         mdoc_node_append(mdoc, pos, p);          return(mdoc_node_append(mdoc, p));
 }  }
   
   
 void  int
 mdoc_body_alloc(struct mdoc *mdoc, int pos, int tok)  mdoc_body_alloc(struct mdoc *mdoc, int line, int pos, int tok)
 {  {
         struct mdoc_node *p;          struct mdoc_node *p;
   
Line 487  mdoc_body_alloc(struct mdoc *mdoc, int pos, int tok)
Line 535  mdoc_body_alloc(struct mdoc *mdoc, int pos, int tok)
   
         p = xcalloc(1, sizeof(struct mdoc_node));          p = xcalloc(1, sizeof(struct mdoc_node));
   
           p->line = line;
           p->pos = pos;
         p->type = MDOC_BODY;          p->type = MDOC_BODY;
         p->data.body.tok = tok;          p->data.body.tok = tok;
   
         mdoc_node_append(mdoc, pos, p);          return(mdoc_node_append(mdoc, p));
 }  }
   
   
 void  int
 mdoc_block_alloc(struct mdoc *mdoc, int pos, int tok,  mdoc_block_alloc(struct mdoc *mdoc, int line, int pos,
                 size_t argsz, const struct mdoc_arg *args)                  int tok, size_t argsz, const struct mdoc_arg *args)
 {  {
         struct mdoc_node *p;          struct mdoc_node *p;
   
         p = xcalloc(1, sizeof(struct mdoc_node));          p = xcalloc(1, sizeof(struct mdoc_node));
   
           p->pos = pos;
           p->line = line;
         p->type = MDOC_BLOCK;          p->type = MDOC_BLOCK;
         p->data.block.tok = tok;          p->data.block.tok = tok;
         p->data.block.argc = argsz;          p->data.block.argc = argsz;
         p->data.block.argv = argdup(argsz, args);          p->data.block.argv = argdup(argsz, args);
   
         mdoc_node_append(mdoc, pos, p);          return(mdoc_node_append(mdoc, p));
 }  }
   
   
 void  int
 mdoc_elem_alloc(struct mdoc *mdoc, int pos, int tok,  mdoc_elem_alloc(struct mdoc *mdoc, int line, int pos,
                 size_t argsz, const struct mdoc_arg *args)                  int tok, size_t argsz, const struct mdoc_arg *args)
 {  {
         struct mdoc_node *p;          struct mdoc_node *p;
   
         p = xcalloc(1, sizeof(struct mdoc_node));          p = xcalloc(1, sizeof(struct mdoc_node));
   
           p->line = line;
           p->pos = pos;
         p->type = MDOC_ELEM;          p->type = MDOC_ELEM;
         p->data.elem.tok = tok;          p->data.elem.tok = tok;
         p->data.elem.argc = argsz;          p->data.elem.argc = argsz;
         p->data.elem.argv = argdup(argsz, args);          p->data.elem.argv = argdup(argsz, args);
   
         mdoc_node_append(mdoc, pos, p);          return(mdoc_node_append(mdoc, p));
 }  }
   
   
 void  int
 mdoc_word_alloc(struct mdoc *mdoc, int pos, const char *word)  mdoc_word_alloc(struct mdoc *mdoc,
                   int line, int pos, const char *word)
 {  {
         struct mdoc_node *p;          struct mdoc_node *p;
   
         p = xcalloc(1, sizeof(struct mdoc_node));          p = xcalloc(1, sizeof(struct mdoc_node));
           p->line = line;
           p->pos = pos;
         p->type = MDOC_TEXT;          p->type = MDOC_TEXT;
         p->data.text.string = xstrdup(word);          p->data.text.string = xstrdup(word);
   
         mdoc_node_append(mdoc, pos, p);          return(mdoc_node_append(mdoc, p));
 }  }
   
   
Line 556  argfree(size_t sz, struct mdoc_arg *p)
Line 614  argfree(size_t sz, struct mdoc_arg *p)
                         /* LINTED */                          /* LINTED */
                         for (j = 0; j < (int)p[i].sz; j++)                          for (j = 0; j < (int)p[i].sz; j++)
                                 free(p[i].value[j]);                                  free(p[i].value[j]);
                           free(p[i].value);
                 }                  }
         free(p);          free(p);
 }  }

Legend:
Removed from v.1.18  
changed lines
  Added in v.1.23

CVSweb