Lines Matching refs:nbody
1976 struct roff_node *nbody; /* of the Bl */ in post_bl() local
1981 nbody = mdoc->last; in post_bl()
1982 switch (nbody->type) { in post_bl()
1994 if (nbody->end != ENDBODY_NOT) in post_bl()
2010 nchild = roff_node_child(nbody); in post_bl()
2012 mdoc->last = nbody; in post_bl()
2014 nbody->line, nbody->pos, "Bl"); in post_bl()
2018 mdoc->last = nbody; in post_bl()
2021 mandoc_msg(MANDOCERR_BL_MOVE, nbody->child->line, in post_bl()
2022 nbody->child->pos, "%s", roff_name[nbody->child->tok]); in post_bl()
2023 if (nbody->parent->prev == NULL) { in post_bl()
2024 mdoc->last = nbody->parent->parent; in post_bl()
2027 mdoc->last = nbody->parent->prev; in post_bl()
2030 roff_node_relink(mdoc, nbody->child); in post_bl()
2063 mdoc->last = nbody; in post_bl()
2070 for (nchild = nbody->child; nchild != NULL; nchild = nchild->next) { in post_bl()