next_word_end    1248 src/simh/linehistory.c   size_t next_word_end = l->pos;
next_word_end    1250 src/simh/linehistory.c   while (next_word_end < l->len && l->buf[next_word_end] == ' ')
next_word_end    1252 src/simh/linehistory.c     ++next_word_end;
next_word_end    1254 src/simh/linehistory.c   while (next_word_end < l->len && l->buf[next_word_end] != ' ')
next_word_end    1256 src/simh/linehistory.c     ++next_word_end;
next_word_end    1258 src/simh/linehistory.c   memmove(l->buf + l->pos, l->buf + next_word_end, l->len - next_word_end);
next_word_end    1259 src/simh/linehistory.c   l->len -= next_word_end - l->pos;