Lines Matching full:last
102 n = man->last;
124 man->last = n;
126 roff_node_delete(man, man->last);
137 * We might delete the man->last node
143 man->last = n;
145 man->last->flags |= NODE_VALID;
155 man->next = (man->last == to) ?
171 n = man->last;
197 n = man->last;
220 for (nn = man->last->parent; nn; nn = nn->parent)
251 for (nn = man->last->parent; nn; nn = nn->parent)
261 man->last->flags |= NODE_LINE |
268 cline = man->last->line;
269 cpos = man->last->pos;
270 ctok = man->last->tok;
280 man->last->flags |= NODE_DELIMC;
281 if (mandoc_eos(man->last->string, strlen(man->last->string)))
282 man->last->flags |= NODE_EOS;
294 if (tok == MAN_YS && man->last == nn) {
296 man_unscope(man, man->last);
374 (tok == MAN_TP || tok == MAN_TQ || n == man->last)) {
394 n = man->last;
407 if (buf[*pos] != '\0' && man->last != n && tok == MAN_PD) {
416 man->last->type == ROFFT_TEXT)
424 * Append NODE_EOS in case the last snipped argument
428 if (n != man->last &&
429 mandoc_eos(man->last->string, strlen(man->last->string)))
430 man->last->flags |= NODE_EOS;
438 if (n == man->last && man_macro(tok)->flags & MAN_ESCOPED) {
443 assert(man->last->type != ROFFT_ROOT);
448 for ( ; man->last; man->last = man->last->parent) {
449 man->last->flags |= NODE_VALID;
450 if (man->last == n)