Lines Matching defs:roff
41 #include "dist/roff.h"
876 struct roff_meta *roff;
882 roff = mparse_result(mp);
883 if (roff == NULL) {
885 warnx("Not a roff(7) page");
889 if (roff->macroset == MACROSET_MDOC) {
891 proff_node(roff->first->child, rec, roff, mdocs);
892 } else if (roff->macroset == MACROSET_MAN) {
894 proff_node(roff->first->child, rec, roff, mans);
896 warnx("Unknown macroset %d", roff->macroset);
897 set_machine(roff, rec);
898 set_section(roff, rec);
1153 struct roff_meta * roff, const proff_nf * func)
1166 if (roff->macroset == MACROSET_MAN)
1168 else if (roff->macroset == MACROSET_MDOC)
1179 proff_node(n->child, rec, roff, func);
1180 proff_node(n->next, rec, roff, func);