Lines Matching defs:first
61 "(spaces or tabs), within the first \awidth\a column positions or "
91 register char *cp, *first;
110 first = cp;
116 while((cp-first) > (width-col))
119 col = last_space - first;
122 sfwrite(out,first,col);
123 first += col;
126 if(cp>first+1 || (n!=T_NL && n!=T_BS))
139 if((cp+(--col)-first)>0)
143 n = (TABSIZE-1) - (cp+col-1-first)&(TABSIZE-1);
145 if((cp-first) > (width-col))
147 sfwrite(out,first,(--cp)-first);
149 first = cp;
165 sfwrite(out,first,cp-first);