Lines Matching defs:line

36 /* Maximum number of string expansions per line, to break infinite loops. */
341 int line; /* parse line */
345 int endspan; /* end-rules: next-line or infty */
352 int ln, /* parse line */ \
740 static char *roffit_macro; /* nil-terminated macro line */
823 int line, int col)
832 p->line = line;
981 roff_node_alloc(struct roff_man *man, int line, int pos,
987 n->line = line;
1055 roff_word_alloc(struct roff_man *man, int line, int pos, const char *word)
1059 n = roff_node_alloc(man, line, pos, ROFFT_TEXT, TOKEN_NONE);
1085 roff_elem_alloc(struct roff_man *man, int line, int pos, int tok)
1089 n = roff_node_alloc(man, line, pos, ROFFT_ELEM, tok);
1095 roff_block_alloc(struct roff_man *man, int line, int pos, int tok)
1099 n = roff_node_alloc(man, line, pos, ROFFT_BLOCK, tok);
1106 roff_head_alloc(struct roff_man *man, int line, int pos, int tok)
1110 n = roff_node_alloc(man, line, pos, ROFFT_HEAD, tok);
1117 roff_body_alloc(struct roff_man *man, int line, int pos, int tok)
1121 n = roff_node_alloc(man, line, pos, ROFFT_BODY, tok);
1134 if (eqn->ln > man->last->line)
1147 n = roff_node_alloc(man, tbl->line, 0, ROFFT_TBL, TOKEN_NONE);
1265 * In the current line, expand escape sequences that tend to get
1473 /* Spring the input line trap. */
1528 int ctl; /* macro line (boolean) */
1532 /* Handle in-line equation delimiters. */
1635 r->last->line, r->last->col,
1646 r->tbl->line, r->tbl->pos, "TS");
1944 * If `\}' occurs on a macro line without a preceding macro,
1945 * drop the line completely.
2066 * or lacking that, to the end of the line.
2216 * If there is nothing on the line after the conditional,
2217 * not even whitespace, use next-line scope.
2240 * single-line scope. Warn if the scope contains
2724 * Arm the input line trap.
2796 * Handle in-line equation delimiters.
2807 * in-line, or this function wouldn't have been called;
2855 /* Toggle the in-line state of the eqn subsystem. */
3204 * append == 1: single-line append mode
3436 * Find out whether a line is a macro line or not.