history_index     154 src/simh/linehistory.c   int    history_index;  /* The history index we are currently editing.      */
history_index    1079 src/simh/linehistory.c     FREE(history[history_len - 1 - l->history_index]);
history_index    1080 src/simh/linehistory.c     history[history_len - 1 - l->history_index] = strdup(l->buf);
history_index    1081 src/simh/linehistory.c     if (!history[history_len - 1 - l->history_index])
history_index    1094 src/simh/linehistory.c     l->history_index += ( dir == LINENOISE_HISTORY_PREV ) ? 1 : -1;
history_index    1095 src/simh/linehistory.c     if (l->history_index < 0)
history_index    1097 src/simh/linehistory.c       l->history_index = 0;
history_index    1100 src/simh/linehistory.c     else if (l->history_index >= history_len)
history_index    1102 src/simh/linehistory.c       l->history_index = history_len - 1;
history_index    1106 src/simh/linehistory.c     strncpy(l->buf, history[history_len - 1 - l->history_index], l->buflen);
history_index    1130 src/simh/linehistory.c     FREE(history[history_len - 1 - l->history_index]);
history_index    1131 src/simh/linehistory.c     history[history_len - 1 - l->history_index] = strdup(l->buf);
history_index    1132 src/simh/linehistory.c     if (!history[history_len - 1 - l->history_index])
history_index    1149 src/simh/linehistory.c       cnt = history_len - 2 - l->history_index;
history_index    1169 src/simh/linehistory.c           l->history_index = history_len - 1 - cnt;
history_index    1177 src/simh/linehistory.c       cnt = history_len - l->history_index;
history_index    1197 src/simh/linehistory.c           l->history_index = history_len - 1 - cnt;
history_index    1313 src/simh/linehistory.c   l.history_index = 0;