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

Diff for /mandoc/Attic/man_action.c between version 1.14 and 1.15

version 1.14, 2009/07/24 20:22:24 version 1.15, 2009/08/13 11:45:29
Line 60  const struct actions man_actions[MAN_MAX] = {
Line 60  const struct actions man_actions[MAN_MAX] = {
         { NULL }, /* na */          { NULL }, /* na */
         { NULL }, /* i */          { NULL }, /* i */
         { NULL }, /* sp */          { NULL }, /* sp */
           { NULL }, /* nf */
           { NULL }, /* fi */
           { NULL }, /* r*/
 };  };
   
   
Line 151  post_TH(struct man *m)
Line 154  post_TH(struct man *m)
          */           */
   
         if (m->last->parent->child == m->last) {          if (m->last->parent->child == m->last) {
                 assert(MAN_ROOT == m->last->parent->type);  
                 m->last->parent->child = NULL;                  m->last->parent->child = NULL;
                 n = m->last;                  n = m->last;
                 m->last = m->last->parent;                  m->last = m->last->parent;
                 m->next = MAN_NEXT_CHILD;                  m->next = MAN_NEXT_CHILD;
                 assert(m->last == m->first);  
         } else {          } else {
                 assert(m->last->prev);                  assert(m->last->prev);
                 m->last->prev->next = NULL;                  m->last->prev->next = NULL;

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

CVSweb