Searched refs:spaces_pending (Results 1 - 1 of 1) sorted by relevance

/freebsd-10-stable/usr.bin/fmt/
H A Dfmt.c629 * Don't confuse |spaces_pending| here with the global
638 size_t spaces_pending=0; local
645 if (len+spaces_pending==0 && ch=='.' && !format_troff) troff=1;
646 if (ch==' ') ++spaces_pending;
648 while (len+spaces_pending >= length) {
651 while (spaces_pending > 0) { --spaces_pending; buf[len++]=' '; col++; }
656 spaces_pending += tab_width - (col+spaces_pending)%tab_width;

Completed in 201 milliseconds