Lines Matching defs:nit
1731 struct roff_node *nbl, *nit, *nch;
1737 nit = mdoc->last;
1738 if (nit->type != ROFFT_BLOCK)
1741 nbl = nit->parent->parent;
1750 if (nit->head->child == NULL)
1752 nit->line, nit->pos, "Bl -%s It",
1759 if (nit->body == NULL || nit->body->child == NULL)
1761 nit->line, nit->pos, "Bl -%s It",
1765 if ((nch = nit->head->child) != NULL)
1767 nit->line, nit->pos, "It %s",
1774 assert(nit->head->child == NULL);
1776 if (nit->head->next->child == NULL &&
1777 nit->head->next->next == NULL) {
1779 nit->line, nit->pos, "It");
1780 roff_node_delete(mdoc, nit);
1785 for (nch = nit->child; nch != NULL; nch = nch->next) {
1793 mandoc_msg(MANDOCERR_BL_COL, nit->line, nit->pos,
1795 else if (nit->head->next->child != NULL &&
1796 nit->head->next->child->flags & NODE_LINE)
1798 nit->line, nit->pos, "Bl -column It");