=================================================================== RCS file: /cvs/mandoc/Attic/man_action.c,v retrieving revision 1.13 retrieving revision 1.16 diff -u -p -r1.13 -r1.16 --- mandoc/Attic/man_action.c 2009/06/18 10:53:58 1.13 +++ mandoc/Attic/man_action.c 2009/08/19 09:14:50 1.16 @@ -1,4 +1,4 @@ -/* $Id: man_action.c,v 1.13 2009/06/18 10:53:58 kristaps Exp $ */ +/* $Id: man_action.c,v 1.16 2009/08/19 09:14:50 kristaps Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * @@ -59,6 +59,12 @@ const struct actions man_actions[MAN_MAX] = { { NULL }, /* RI */ { NULL }, /* na */ { NULL }, /* i */ + { NULL }, /* sp */ + { NULL }, /* nf */ + { NULL }, /* fi */ + { NULL }, /* r */ + { NULL }, /* RE */ + { NULL }, /* RS */ }; @@ -150,12 +156,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;