Lines Matching defs:nit
1695 struct roff_node *nbl, *nit, *nch;
1701 nit = mdoc->last;
1702 if (nit->type != ROFFT_BLOCK)
1705 nbl = nit->parent->parent;
1714 if (nit->head->child == NULL)
1716 nit->line, nit->pos, "Bl -%s It",
1723 if (nit->body == NULL || nit->body->child == NULL)
1725 nit->line, nit->pos, "Bl -%s It",
1729 if ((nch = nit->head->child) != NULL)
1731 nit->line, nit->pos, "It %s",
1738 assert(nit->head->child == NULL);
1740 if (nit->head->next->child == NULL &&
1741 nit->head->next->next == NULL) {
1743 nit->line, nit->pos, "It");
1744 roff_node_delete(mdoc, nit);
1749 for (nch = nit->child; nch != NULL; nch = nch->next) {
1757 mandoc_msg(MANDOCERR_BL_COL, nit->line, nit->pos,
1759 else if (nit->head->next->child != NULL &&
1760 nit->head->next->child->flags & NODE_LINE)
1762 nit->line, nit->pos, "Bl -column It");