Home | History | Annotate | Download | only in src

Lines Matching refs:histsize

78 /* HISTSIZE default: size of saved history, persistent or standard */
530 if (n > 0 && n != histsize) {
541 histsize = n;
590 histsize = MKSH_DEFHISTSIZE;
591 history = alloc2(histsize, sizeof(char *), APERM);
699 if (++hp >= history + histsize) {
702 for (hp = history; hp < history + histsize - 1; hp++)
795 if (lines > histsize && histptr >= history) {