Lines Matching defs:nit
1712 struct roff_node *nbl, *nit, *nch;
1718 nit = mdoc->last;
1719 if (nit->type != ROFFT_BLOCK)
1722 nbl = nit->parent->parent;
1731 if (nit->head->child == NULL)
1733 nit->line, nit->pos, "Bl -%s It",
1740 if (nit->body == NULL || nit->body->child == NULL)
1742 nit->line, nit->pos, "Bl -%s It",
1746 if ((nch = nit->head->child) != NULL)
1748 nit->line, nit->pos, "It %s",
1755 assert(nit->head->child == NULL);
1757 if (nit->head->next->child == NULL &&
1758 nit->head->next->next == NULL) {
1760 nit->line, nit->pos, "It");
1761 roff_node_delete(mdoc, nit);
1766 for (nch = nit->child; nch != NULL; nch = nch->next) {
1774 mandoc_msg(MANDOCERR_BL_COL, nit->line, nit->pos,
1776 else if (nit->head->next->child != NULL &&
1777 nit->head->next->child->flags & NODE_LINE)
1779 nit->line, nit->pos, "Bl -column It");