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

Diff for /mandoc/mdoc.c between version 1.16 and 1.19

version 1.16, 2009/01/05 14:14:04 version 1.19, 2009/01/06 15:49:44
Line 85  const char *const __mdoc_argnames[MDOC_ARG_MAX] = {   
Line 85  const char *const __mdoc_argnames[MDOC_ARG_MAX] = {   
   
 const   struct mdoc_macro __mdoc_macros[MDOC_MAX] = {  const   struct mdoc_macro __mdoc_macros[MDOC_MAX] = {
         { NULL, 0 }, /* \" */          { NULL, 0 }, /* \" */
         { NULL, MDOC_PROLOGUE }, /* Dd */          { macro_prologue, MDOC_PROLOGUE }, /* Dd */
         { NULL, MDOC_PROLOGUE }, /* Dt */          { macro_prologue, MDOC_PROLOGUE }, /* Dt */
         { NULL, MDOC_PROLOGUE }, /* Os */          { macro_prologue, MDOC_PROLOGUE }, /* Os */
         { 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 */
         { NULL, 0 }, /* 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 }, /* 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 */
         { NULL, 0 }, /* 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 - 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_constant, MDOC_QUOTABLE }, /* %A */          { macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Xr */
         { macro_constant, MDOC_QUOTABLE }, /* %B */          { macro_constant, MDOC_QUOTABLE | MDOC_PARSED }, /* %A */
           { macro_constant, MDOC_QUOTABLE | MDOC_PARSED }, /* %B */
         { macro_constant, MDOC_QUOTABLE }, /* %D */          { macro_constant, MDOC_QUOTABLE }, /* %D */
         { macro_constant, MDOC_QUOTABLE }, /* %I */          { macro_constant, MDOC_QUOTABLE | MDOC_PARSED }, /* %I */
         { macro_constant, MDOC_QUOTABLE }, /* %J */          { macro_constant, MDOC_QUOTABLE | MDOC_PARSED }, /* %J */
         { macro_constant, MDOC_QUOTABLE }, /* %N */          { macro_constant, MDOC_QUOTABLE }, /* %N */
         { macro_constant, MDOC_QUOTABLE }, /* %O */          { macro_constant, MDOC_QUOTABLE }, /* %O */
         { macro_constant, MDOC_QUOTABLE }, /* %P */          { macro_constant, MDOC_QUOTABLE }, /* %P */
         { macro_constant, MDOC_QUOTABLE }, /* %R */          { macro_constant, MDOC_QUOTABLE }, /* %R */
         { macro_constant, MDOC_QUOTABLE }, /* %T */          { macro_constant, MDOC_QUOTABLE | MDOC_PARSED }, /* %T */
         { macro_constant, MDOC_QUOTABLE }, /* %V */          { macro_constant, MDOC_QUOTABLE }, /* %V */
         { NULL, 0 }, /* Ac */          { macro_close_explicit, MDOC_CALLABLE | MDOC_PARSED }, /* Ac */
         { NULL, 0 }, /* 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 */
         { NULL, 0 }, /* Bc */          { macro_close_explicit, MDOC_CALLABLE | MDOC_PARSED }, /* Bc */
         { macro_scoped, MDOC_EXPLICIT }, /* Bf */          { macro_scoped, MDOC_EXPLICIT }, /* Bf */
         { NULL, 0 }, /* 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 */
         { NULL, 0 }, /* Dc */          { macro_close_explicit, MDOC_CALLABLE | MDOC_PARSED }, /* Dc */
         { NULL, 0 }, /* Do */          { macro_constant_scoped, MDOC_CALLABLE | MDOC_PARSED }, /* Do */
         { macro_scoped_line, MDOC_CALLABLE }, /* Dq */          { macro_scoped_line, MDOC_CALLABLE | MDOC_PARSED }, /* Dq */
         { NULL, 0 }, /* 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 */
         { NULL, 0 }, /* 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 */
         { NULL, 0 }, /* Pc */          { macro_close_explicit, MDOC_CALLABLE | MDOC_PARSED }, /* Pc */
         { macro_constant, 0 }, /* Pf */          { macro_constant, MDOC_PARSED }, /* Pf */
         { NULL, 0 }, /* Po */          { macro_constant_scoped, MDOC_CALLABLE | MDOC_PARSED }, /* Po */
         { macro_scoped_line, MDOC_CALLABLE }, /* Pq */          { macro_scoped_line, MDOC_CALLABLE | MDOC_PARSED }, /* Pq */
         { NULL, 0 }, /* Qc */          { macro_close_explicit, MDOC_CALLABLE | MDOC_PARSED }, /* Qc */
         { macro_scoped_line, MDOC_CALLABLE }, /* Ql */          { macro_scoped_line, MDOC_CALLABLE | MDOC_PARSED }, /* Ql */
         { NULL, 0 }, /* Qo */          { macro_constant_scoped, MDOC_CALLABLE | MDOC_PARSED }, /* Qo */
         { macro_scoped_line, MDOC_CALLABLE }, /* Qq */          { macro_scoped_line, MDOC_CALLABLE | MDOC_PARSED }, /* Qq */
         { macro_scoped, MDOC_EXPLICIT }, /* Re */          { macro_close_explicit, 0 }, /* Re */
         { macro_scoped, MDOC_EXPLICIT }, /* Rs */          { macro_scoped, MDOC_EXPLICIT }, /* Rs */
         { NULL, 0 }, /* Sc */          { macro_close_explicit, MDOC_CALLABLE | MDOC_PARSED }, /* Sc */
         { NULL, 0 }, /* 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 */
         { NULL, 0 }, /* Xc */          { macro_close_explicit, MDOC_CALLABLE | MDOC_PARSED }, /* Xc */
         { NULL, 0 }, /* Xo */          { macro_constant_scoped, MDOC_CALLABLE | MDOC_PARSED }, /* Xo */
         { NULL, 0 }, /* Fo */          /* XXX - .Fo supposed to be (but isn't) callable. */
         { NULL, 0 }, /* Fc */          { macro_scoped, MDOC_EXPLICIT | MDOC_PARSED }, /* Fo */
         { NULL, 0 }, /* Oo */          /* XXX - .Fc supposed to be (but isn't) callable. */
         { NULL, 0 }, /* Oc */          { macro_close_explicit, MDOC_PARSED }, /* Fc */
         { NULL, 0 }, /* Bk */          { macro_constant_scoped, MDOC_CALLABLE | MDOC_PARSED }, /* Oo */
         { NULL, 0 }, /* Ek */          { macro_close_explicit, MDOC_CALLABLE | MDOC_PARSED }, /* Oc */
           { macro_scoped, MDOC_EXPLICIT }, /* Bk */
           { macro_close_explicit, 0 }, /* Ek */
         { macro_constant, 0 }, /* Bt */          { macro_constant, 0 }, /* Bt */
         { macro_constant, 0 }, /* Hf */          { macro_constant, 0 }, /* Hf */
         { macro_obsolete, 0 }, /* Fr */          { macro_obsolete, 0 }, /* Fr */
Line 252  mdoc_parseln(struct mdoc *mdoc, char *buf)
Line 255  mdoc_parseln(struct mdoc *mdoc, char *buf)
         char              tmp[5];          char              tmp[5];
   
         if ('.' != *buf) {          if ('.' != *buf) {
                   if (SEC_PROLOGUE == mdoc->sec_lastn)
                           return(mdoc_err(mdoc, -1, 0, ERR_SYNTAX_NOTEXT));
                 mdoc_word_alloc(mdoc, 0, buf);                  mdoc_word_alloc(mdoc, 0, buf);
                 mdoc->next = MDOC_NEXT_SIBLING;                  mdoc->next = MDOC_NEXT_SIBLING;
                 return(1);                  return(1);
Line 326  int
Line 331  int
 mdoc_macro(struct mdoc *mdoc, int tok, int ppos, int *pos, char *buf)  mdoc_macro(struct mdoc *mdoc, int tok, 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(macro_prologue(mdoc, tok, ppos, pos, buf));  
   
         if (SEC_PROLOGUE == mdoc->sec_lastn)  
                 return(mdoc_err(mdoc, tok, ppos, ERR_SEC_PROLOGUE));                  return(mdoc_err(mdoc, tok, ppos, ERR_SEC_PROLOGUE));
   
         if (NULL == (mdoc_macros[tok].fp)) {          if (NULL == (mdoc_macros[tok].fp)) {
Line 369  mdoc_node_append(struct mdoc *mdoc, int pos, struct md
Line 371  mdoc_node_append(struct mdoc *mdoc, int pos, struct md
                 nn = mdoc_macronames[p->data.head.tok];                  nn = mdoc_macronames[p->data.head.tok];
                 nt = "head";                  nt = "head";
                 break;                  break;
           case (MDOC_TAIL):
                   nn = mdoc_macronames[p->data.tail.tok];
                   nt = "tail";
                   break;
         case (MDOC_BLOCK):          case (MDOC_BLOCK):
                 nn = mdoc_macronames[p->data.block.tok];                  nn = mdoc_macronames[p->data.block.tok];
                 nt = "block";                  nt = "block";
Line 403  mdoc_node_append(struct mdoc *mdoc, int pos, struct md
Line 409  mdoc_node_append(struct mdoc *mdoc, int pos, struct md
                 on = mdoc_macronames[mdoc->last->data.head.tok];                  on = mdoc_macronames[mdoc->last->data.head.tok];
                 ot = "head";                  ot = "head";
                 break;                  break;
           case (MDOC_TAIL):
                   on = mdoc_macronames[mdoc->last->data.tail.tok];
                   ot = "tail";
                   break;
         case (MDOC_BLOCK):          case (MDOC_BLOCK):
                 on = mdoc_macronames[mdoc->last->data.block.tok];                  on = mdoc_macronames[mdoc->last->data.block.tok];
                 ot = "block";                  ot = "block";
Line 437  mdoc_node_append(struct mdoc *mdoc, int pos, struct md
Line 447  mdoc_node_append(struct mdoc *mdoc, int pos, struct md
   
   
 void  void
   mdoc_tail_alloc(struct mdoc *mdoc, int pos, int tok)
   {
           struct mdoc_node *p;
   
           assert(mdoc->first);
           assert(mdoc->last);
   
           p = xcalloc(1, sizeof(struct mdoc_node));
   
           p->type = MDOC_TAIL;
           p->data.tail.tok = tok;
   
           mdoc_node_append(mdoc, pos, p);
   }
   
   
   void
 mdoc_head_alloc(struct mdoc *mdoc, int pos, int tok)  mdoc_head_alloc(struct mdoc *mdoc, int pos, int tok)
 {  {
         struct mdoc_node *p;          struct mdoc_node *p;
Line 496  mdoc_elem_alloc(struct mdoc *mdoc, int pos, int tok, 
Line 523  mdoc_elem_alloc(struct mdoc *mdoc, int pos, int tok, 
         p = xcalloc(1, sizeof(struct mdoc_node));          p = xcalloc(1, sizeof(struct mdoc_node));
         p->type = MDOC_ELEM;          p->type = MDOC_ELEM;
         p->data.elem.tok = tok;          p->data.elem.tok = tok;
         /* FIXME: freeing of params... */  
         p->data.elem.argc = argsz;          p->data.elem.argc = argsz;
         p->data.elem.argv = argdup(argsz, args);          p->data.elem.argv = argdup(argsz, args);
   
Line 533  argfree(size_t sz, struct mdoc_arg *p)
Line 559  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.16  
changed lines
  Added in v.1.19

CVSweb