[BACK]Return to man_action.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / mandoc

Diff for /src/usr.bin/mandoc/Attic/man_action.c between version 1.12 and 1.13

version 1.12, 2010/03/02 01:00:39 version 1.13, 2010/03/25 23:23:01
Line 177 
Line 177 
         if (n && (n = n->next))          if (n && (n = n->next))
                 m->meta.vol = mandoc_strdup(n->string);                  m->meta.vol = mandoc_strdup(n->string);
   
         /*          n = m->last;
          * The end document shouldn't have the prologue macros as part          man_node_unlink(m, n);
          * of the syntax tree (they encompass only meta-data).  
          */  
   
         if (m->last->parent->child == m->last) {  
                 m->last->parent->child = NULL;  
                 n = m->last;  
                 m->last = m->last->parent;  
                 m->next = MAN_NEXT_CHILD;  
         } else {  
                 assert(m->last->prev);  
                 m->last->prev->next = NULL;  
                 n = m->last;  
                 m->last = m->last->prev;  
                 m->next = MAN_NEXT_SIBLING;  
         }  
   
         man_node_freelist(n);          man_node_freelist(n);
         return(1);          return(1);
 }  }

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.13