Home
last modified time | relevance | path

Searched refs:viscol (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/mandoc/
H A Dterm.c109 vbl = (p->flags & TERMP_NOPAD) || p->tcol->offset < p->viscol ? in term_flushln()
110 0 : p->tcol->offset - p->viscol; in term_flushln()
120 vfield = p->tcol->rmargin > p->viscol + vbl ? in term_flushln()
121 p->tcol->rmargin - p->viscol - vbl : 0; in term_flushln()
131 p->maxrmargin > p->viscol + vbl ? in term_flushln()
132 p->maxrmargin - p->viscol - vbl : 0; in term_flushln()
416 p->viscol += vbl; in term_field()
425 p->viscol -= dv; in term_field()
429 p->viscol += dv; in term_field()
444 if (p->viscol && p->maxrmargin >= p->viscol) in endline()
[all …]
H A Dtbl_term.c331 tp->viscol = tp->tcol->offset; in term_tbl()
454 if (tp->viscol < tp->tcol->rmargin) { in term_tbl()
456 - tp->viscol); in term_tbl()
457 tp->viscol = tp->tcol->rmargin; in term_tbl()
459 while (tp->viscol < tp->tcol->rmargin + in term_tbl()
534 } while (tp->viscol < tp->tcol->offset); in term_tbl()
539 tp->viscol = 0; in term_tbl()
602 if (tp->viscol == 0) { in tbl_hrule()
604 tp->viscol = tp->tcols->offset; in tbl_hrule()
710 tp->viscol = 0; in tbl_hrule()
[all …]
H A Dterm.h74 size_t viscol; /* Chars on current line. */ member