newcol
col = newcol((unsigned char) es->cbuf[cur++], col);
tcol = newcol((unsigned char) es->cbuf[tcur++], tcol);
holdcol1 = newcol((unsigned char) es->cbuf[holdcur1++],
static int newcol ARGS((int, int));
int i, j, c, lastc, col, nc, newcol;
newcol = roundup(col + 1, tabsize);
if (hw > 0 && newcol >= hw)
if (hw > 0 && newcol > hw)
newcol = hw;
printf("%*s", newcol - col, "");
col = newcol;
int col, newcol, tabstop;
newcol = nc + n;
while ((tabstop = roundup(col + 1, tabsize)) <= newcol) {
printf("%*s", newcol - col, "");