Home
last modified time | relevance | path

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

/illumos-gate/usr/src/cmd/mandoc/
H A Dterm.c108 vbl = (p->flags & TERMP_NOPAD) || p->tcol->offset < p->viscol ? in term_flushln()
109 0 : p->tcol->offset - p->viscol; in term_flushln()
119 vfield = p->tcol->rmargin > p->viscol + vbl ? in term_flushln()
120 p->tcol->rmargin - p->viscol - vbl : 0; in term_flushln()
130 p->maxrmargin > p->viscol + vbl ? in term_flushln()
131 p->maxrmargin - p->viscol - vbl : 0; in term_flushln()
209 p->viscol = 0; in term_flushln()
391 p->viscol += vbl; in term_field()
400 p->viscol -= dv; in term_field()
404 p->viscol += dv; in term_field()
[all …]
H A Dtbl_term.c327 tp->viscol = tp->tcol->offset; in term_tbl()
450 if (tp->viscol < tp->tcol->rmargin) { in term_tbl()
452 - tp->viscol); in term_tbl()
453 tp->viscol = tp->tcol->rmargin; in term_tbl()
455 while (tp->viscol < tp->tcol->rmargin + in term_tbl()
530 } while (tp->viscol < tp->tcol->offset); in term_tbl()
535 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.h73 size_t viscol; /* Chars on current line. */ member