Lines Matching defs:nit
1710 struct roff_node *nbl, *nit, *nch;
1716 nit = mdoc->last;
1717 if (nit->type != ROFFT_BLOCK)
1720 nbl = nit->parent->parent;
1729 if (nit->head->child == NULL)
1731 nit->line, nit->pos, "Bl -%s It",
1738 if (nit->body == NULL || nit->body->child == NULL)
1740 nit->line, nit->pos, "Bl -%s It",
1744 if ((nch = nit->head->child) != NULL)
1746 nit->line, nit->pos, "It %s",
1753 assert(nit->head->child == NULL);
1755 if (nit->head->next->child == NULL &&
1756 nit->head->next->next == NULL) {
1758 nit->line, nit->pos, "It");
1759 roff_node_delete(mdoc, nit);
1764 for (nch = nit->child; nch != NULL; nch = nch->next) {
1772 mandoc_msg(MANDOCERR_BL_COL, nit->line, nit->pos,
1774 else if (nit->head->next->child != NULL &&
1775 nit->head->next->child->flags & NODE_LINE)
1777 nit->line, nit->pos, "Bl -column It");