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;
440 struct roff_node *nt;
442 if (n->type != ROFFT_HEAD || (nt = n->child) == NULL)
445 while ((nt->flags & NODE_LINE) == 0)
446 if ((nt = nt->next) == NULL)
449 switch (nt->tok) {
456 nt = nt->child;
461 check_tag(n, nt);