Lines Matching defs:nt
197 check_tag(struct roff_node *n, struct roff_node *nt)
202 if (nt == NULL || nt->type != ROFFT_TEXT)
205 cp = nt->string;
432 struct roff_node *nt;
434 if (n->type != ROFFT_HEAD || (nt = n->child) == NULL)
437 while ((nt->flags & NODE_LINE) == 0)
438 if ((nt = nt->next) == NULL)
441 switch (nt->tok) {
448 nt = nt->child;
453 check_tag(n, nt);