[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.13 and 1.15

version 1.13, 2009/06/18 10:53:58 version 1.15, 2009/08/13 11:45:29
Line 59  const struct actions man_actions[MAN_MAX] = {
Line 59  const struct actions man_actions[MAN_MAX] = {
         { NULL }, /* RI */          { NULL }, /* RI */
         { NULL }, /* na */          { NULL }, /* na */
         { NULL }, /* i */          { NULL }, /* i */
           { NULL }, /* sp */
           { NULL }, /* nf */
           { NULL }, /* fi */
           { NULL }, /* r*/
 };  };
   
   
Line 150  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.13  
changed lines
  Added in v.1.15

CVSweb