Home
last modified time | relevance | path

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

/titanic_41/usr/src/cmd/mandoc/
H A Dman_term.c97 static const struct termact termacts[MAN_MAX] = { variable
1016 if ( ! (MAN_NOTEXT & termacts[n->tok].flags)) in print_man_node()
1020 if (termacts[n->tok].pre) in print_man_node()
1021 c = (*termacts[n->tok].pre)(p, mt, n, meta); in print_man_node()
1026 if (termacts[n->tok].post) in print_man_node()
1027 (*termacts[n->tok].post)(p, mt, n, meta); in print_man_node()
1028 if ( ! (MAN_NOTEXT & termacts[n->tok].flags)) in print_man_node()
H A Dmdoc_term.c124 static const struct termact termacts[MDOC_MAX] = { variable
342 if (termacts[n->tok].pre && ENDBODY_NOT == n->end) in print_mdoc_node()
343 chld = (*termacts[n->tok].pre) in print_mdoc_node()
362 if ( ! termacts[n->tok].post || MDOC_ENDED & n->flags) in print_mdoc_node()
364 (void)(*termacts[n->tok].post)(p, &npair, meta, n); in print_mdoc_node()