Home
last modified time | relevance | path

Searched refs:histMerg (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/tcsh/
H A Dsh.hist.c71 static struct Hist *histMerg = NULL; /* last element merged by Htime */ variable
100 if (hp == histMerg) /* deleting this hint from list */ in hremove()
101 histMerg = NULL; in hremove()
890 if (histMerg && histMerg != &Histlist && histMerg != Histlist.Hnext) { in mergeInsertionPoint()
893 if (histMerg->Htime >= np->Htime) in mergeInsertionPoint()
894 pTime = histMerg; in mergeInsertionPoint()
895 else if (histMerg->Hprev->Htime >= np->Htime) in mergeInsertionPoint()
896 pTime = histMerg->Hprev; in mergeInsertionPoint()
910 histMerg = pp; in mergeInsertionPoint()
1040 assert(hp != histMerg); in hfree()