=================================================================== RCS file: /cvs/mandoc/Attic/man_action.c,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- mandoc/Attic/man_action.c 2009/07/24 20:22:24 1.14 +++ mandoc/Attic/man_action.c 2009/08/13 11:45:29 1.15 @@ -1,4 +1,4 @@ -/* $Id: man_action.c,v 1.14 2009/07/24 20:22:24 kristaps Exp $ */ +/* $Id: man_action.c,v 1.15 2009/08/13 11:45:29 kristaps Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * @@ -60,6 +60,9 @@ const struct actions man_actions[MAN_MAX] = { { NULL }, /* na */ { NULL }, /* i */ { NULL }, /* sp */ + { NULL }, /* nf */ + { NULL }, /* fi */ + { NULL }, /* r*/ }; @@ -151,12 +154,10 @@ post_TH(struct man *m) */ if (m->last->parent->child == m->last) { - assert(MAN_ROOT == m->last->parent->type); m->last->parent->child = NULL; n = m->last; m->last = m->last->parent; m->next = MAN_NEXT_CHILD; - assert(m->last == m->first); } else { assert(m->last->prev); m->last->prev->next = NULL;