next_word_end    1251 src/simh/linehistory.c   size_t next_word_end = l->pos;
next_word_end    1253 src/simh/linehistory.c   while (next_word_end < l->len && l->buf[next_word_end] == ' ')
next_word_end    1255 src/simh/linehistory.c     ++next_word_end;
next_word_end    1257 src/simh/linehistory.c   while (next_word_end < l->len && l->buf[next_word_end] != ' ')
next_word_end    1259 src/simh/linehistory.c     ++next_word_end;
next_word_end    1261 src/simh/linehistory.c   memmove(l->buf + l->pos, l->buf + next_word_end, l->len - next_word_end);
next_word_end    1262 src/simh/linehistory.c   l->len -= next_word_end - l->pos;