Home | History | Annotate | Download | only in src

Lines Matching refs:histsize

78 /* HISTSIZE default: size of saved history, persistent or standard */
537 if (n > 0 && n != histsize) {
548 histsize = n;
595 histsize = MKSH_DEFHISTSIZE;
596 history = alloc2(histsize, sizeof(char *), APERM);
659 if (++hp >= history + histsize) {
662 for (hp = history; hp < history + histsize - 1; hp++)
751 if (lines > histsize && histptr >= history) {