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

Diff for /mandoc/Attic/mdoc_action.c between version 1.11 and 1.15

version 1.11, 2009/06/12 12:52:51 version 1.15, 2009/06/17 14:10:09
Line 51  static int   concat(struct mdoc *, const struct mdoc_n
Line 51  static int   concat(struct mdoc *, const struct mdoc_n
   
 static  int       post_ar(POST_ARGS);  static  int       post_ar(POST_ARGS);
 static  int       post_bl(POST_ARGS);  static  int       post_bl(POST_ARGS);
   static  int       post_bl_head(POST_ARGS);
 static  int       post_bl_width(POST_ARGS);  static  int       post_bl_width(POST_ARGS);
 static  int       post_bl_tagwidth(POST_ARGS);  static  int       post_bl_tagwidth(POST_ARGS);
 static  int       post_dd(POST_ARGS);  static  int       post_dd(POST_ARGS);
Line 71  static int   pre_dl(PRE_ARGS);
Line 72  static int   pre_dl(PRE_ARGS);
 #define nerr(m, n, t) perr((m), (n)->line, (n)->pos, (t))  #define nerr(m, n, t) perr((m), (n)->line, (n)->pos, (t))
   
 const   struct actions mdoc_actions[MDOC_MAX] = {  const   struct actions mdoc_actions[MDOC_MAX] = {
         { NULL, NULL }, /* \" */          { NULL, NULL }, /* Ap */
         { NULL, post_dd }, /* Dd */          { NULL, post_dd }, /* Dd */
         { NULL, post_dt }, /* Dt */          { NULL, post_dt }, /* Dt */
         { NULL, post_os }, /* Os */          { NULL, post_os }, /* Os */
Line 178  const struct actions mdoc_actions[MDOC_MAX] = {
Line 179  const struct actions mdoc_actions[MDOC_MAX] = {
         { NULL, NULL }, /* Fr */          { NULL, NULL }, /* Fr */
         { NULL, NULL }, /* Ud */          { NULL, NULL }, /* Ud */
         { NULL, NULL }, /* Lb */          { NULL, NULL }, /* Lb */
         { NULL, NULL }, /* Ap */  
         { NULL, NULL }, /* Lp */          { NULL, NULL }, /* Lp */
         { NULL, post_lk }, /* Lk */          { NULL, post_lk }, /* Lk */
         { NULL, NULL }, /* Mt */          { NULL, NULL }, /* Mt */
Line 516  post_os(POST_ARGS)
Line 516  post_os(POST_ARGS)
   
         if (NULL == (m->meta.os = strdup(buf)))          if (NULL == (m->meta.os = strdup(buf)))
                 return(verr(m, EMALLOC));                  return(verr(m, EMALLOC));
         m->lastnamed = m->lastsec = SEC_BODY;  
   
           m->flags |= MDOC_PBODY;
         return(post_prol(m));          return(post_prol(m));
 }  }
   
Line 635  post_bl_width(struct mdoc *m)
Line 635  post_bl_width(struct mdoc *m)
   
   
 static int  static int
   post_bl_head(POST_ARGS)
   {
           int                      i, c;
           struct mdoc_node        *n, *nn, *nnp;
   
           if (NULL == m->last->child)
                   return(1);
   
           n = m->last->parent;
           assert(n->args);
   
           for (c = 0; c < (int)n->args->argc; c++)
                   if (MDOC_Column == n->args->argv[c].arg)
                           break;
   
           /* Only process -column. */
   
           if (c == (int)n->args->argc)
                   return(1);
   
           assert(0 == n->args->argv[c].sz);
   
           /*
            * Accomodate for new-style groff column syntax.  Shuffle the
            * child nodes, all of which must be TEXT, as arguments for the
            * column field.  Then, delete the head children.
            */
   
           for (i = 0, nn = m->last->child; nn; nn = nn->next, i++)
                   /* Count children. */;
   
           n->args->argv[c].sz = (size_t)i;
           n->args->argv[c].value = malloc((size_t)i * sizeof(char *));
   
           for (i = 0, nn = m->last->child; nn; i++) {
                   n->args->argv[c].value[i] = nn->string;
                   nn->string = NULL;
                   nnp = nn;
                   nn = nn->next;
                   mdoc_node_free(nnp);
           }
   
           m->last->child = NULL;
           return(1);
   }
   
   
   static int
 post_bl(POST_ARGS)  post_bl(POST_ARGS)
 {  {
         int               i, r, len;          int               i, r, len;
   
           if (MDOC_HEAD == m->last->type)
                   return(post_bl_head(m));
         if (MDOC_BLOCK != m->last->type)          if (MDOC_BLOCK != m->last->type)
                 return(1);                  return(1);
   

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

CVSweb