Home
last modified time | relevance | path

Searched refs:termacts (Results 1 – 2 of 2) sorted by relevance

/titanic_50/usr/src/cmd/mandoc/
H A Dman_term.c95 static const struct termact termacts[MAN_MAX] = { variable
746 } while (n != NULL && termacts[n->tok].flags & MAN_NOTEXT); in pre_SS()
801 } while (n != NULL && termacts[n->tok].flags & MAN_NOTEXT); in pre_SH()
956 if ( ! (MAN_NOTEXT & termacts[n->tok].flags)) in print_man_node()
960 if (termacts[n->tok].pre) in print_man_node()
961 c = (*termacts[n->tok].pre)(p, mt, n, meta); in print_man_node()
966 if (termacts[n->tok].post) in print_man_node()
967 (*termacts[n->tok].post)(p, mt, n, meta); in print_man_node()
968 if ( ! (MAN_NOTEXT & termacts[n->tok].flags)) in print_man_node()
H A Dmdoc_term.c125 static const struct termact termacts[MDOC_MAX] = { variable
356 if (termacts[n->tok].pre && in print_mdoc_node()
358 chld = (*termacts[n->tok].pre) in print_mdoc_node()
377 if ( ! termacts[n->tok].post || MDOC_ENDED & n->flags) in print_mdoc_node()
379 (void)(*termacts[n->tok].post)(p, &npair, meta, n); in print_mdoc_node()