[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.50 and 1.56

version 1.50, 2010/01/01 17:14:29 version 1.56, 2010/05/14 15:26:39
Line 44  struct actions {
Line 44  struct actions {
   
 static  int       concat(struct mdoc *, char *,  static  int       concat(struct mdoc *, char *,
                         const struct mdoc_node *, size_t);                          const struct mdoc_node *, size_t);
 static  inline int order_rs(int);  static  inline int order_rs(enum mdoct);
   
 static  int       post_ar(POST_ARGS);  static  int       post_ar(POST_ARGS);
 static  int       post_at(POST_ARGS);  static  int       post_at(POST_ARGS);
Line 196  static const struct actions mdoc_actions[MDOC_MAX] = {
Line 196  static const struct actions mdoc_actions[MDOC_MAX] = {
   
 #define RSORD_MAX 14  #define RSORD_MAX 14
   
 static  const int rsord[RSORD_MAX] = {  static  const enum mdoct rsord[RSORD_MAX] = {
         MDOC__A,          MDOC__A,
         MDOC__T,          MDOC__T,
         MDOC__B,          MDOC__B,
Line 366  post_st(POST_ARGS)
Line 366  post_st(POST_ARGS)
   
         assert(MDOC_TEXT == n->child->type);          assert(MDOC_TEXT == n->child->type);
         p = mdoc_a2st(n->child->string);          p = mdoc_a2st(n->child->string);
         assert(p);          if (p != NULL) {
         free(n->child->string);                  free(n->child->string);
         n->child->string = mandoc_strdup(p);                  n->child->string = mandoc_strdup(p);
           }
         return(1);          return(1);
 }  }
   
Line 419  post_sh(POST_ARGS)
Line 420  post_sh(POST_ARGS)
   
         if ( ! concat(m, buf, n->child, BUFSIZ))          if ( ! concat(m, buf, n->child, BUFSIZ))
                 return(0);                  return(0);
         sec = mdoc_atosec(buf);          sec = mdoc_str2sec(buf);
         if (SEC_CUSTOM != sec)          /*
            * The first section should always make us move into a non-new
            * state.
            */
           if (SEC_NONE == m->lastnamed || SEC_CUSTOM != sec)
                 m->lastnamed = sec;                  m->lastnamed = sec;
   
         /* Some sections only live in certain manual sections. */          /* Some sections only live in certain manual sections. */
Line 647  static int
Line 652  static int
 post_bl_width(POST_ARGS)  post_bl_width(POST_ARGS)
 {  {
         size_t            width;          size_t            width;
         int               i, tok;          int               i;
           enum mdoct        tok;
         char              buf[NUMSIZ];          char              buf[NUMSIZ];
         char             *p;          char             *p;
   
Line 724  post_bl_head(POST_ARGS)
Line 730  post_bl_head(POST_ARGS)
                 nn->string = NULL;                  nn->string = NULL;
                 nnp = nn;                  nnp = nn;
                 nn = nn->next;                  nn = nn->next;
                 mdoc_node_free(nnp);                  mdoc_node_delete(NULL, nnp);
         }          }
   
         n->nchild = 0;          n->nchild = 0;
Line 849  post_dd(POST_ARGS)
Line 855  post_dd(POST_ARGS)
 static int  static int
 post_prol(POST_ARGS)  post_prol(POST_ARGS)
 {  {
         struct mdoc_node *np;  
   
         if (n->parent->child == n)          mdoc_node_delete(m, n);
                 n->parent->child = n->prev;  
         if (n->prev)  
                 n->prev->next = NULL;  
   
         np = n;  
         assert(NULL == n->next);  
   
         if (n->prev) {  
                 m->last = n->prev;  
                 m->next = MDOC_NEXT_SIBLING;  
         } else {  
                 m->last = n->parent;  
                 m->next = MDOC_NEXT_CHILD;  
         }  
   
         mdoc_node_freelist(np);  
   
         if (m->meta.title && m->meta.date && m->meta.os)          if (m->meta.title && m->meta.date && m->meta.os)
                 m->flags |= MDOC_PBODY;                  m->flags |= MDOC_PBODY;
   
         return(1);          return(1);
 }  }
   
Line 959  post_display(POST_ARGS)
Line 946  post_display(POST_ARGS)
   
   
 static inline int  static inline int
 order_rs(int t)  order_rs(enum mdoct t)
 {  {
         int             i;          int             i;
   
         for (i = 0; i < RSORD_MAX; i++)          for (i = 0; i < (int)RSORD_MAX; i++)
                 if (rsord[i] == t)                  if (rsord[i] == t)
                         return(i);                          return(i);
   

Legend:
Removed from v.1.50  
changed lines
  Added in v.1.56

CVSweb