Home | History | Annotate | Download | only in fold

Lines Matching defs:last_space

152 			int last_space;
155 last_space = 0; /* XXX gcc */
158 for (i = 0, last_space = -1; i < indx; i++)
160 last_space = i;
163 if (split_words && last_space != -1) {
164 for (i = 0; i < last_space; i++)
167 /* increase last_space here, so we skip trailing whitespace */
168 last_space++;
169 wmemmove (buf, buf+last_space, indx-last_space);
171 indx -= last_space;