Home
last modified time | relevance | path

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

/freebsd/contrib/tcsh/
H A Dsh.hist.c70 static struct Hist *histTail = NULL; /* last element on history list */ variable
85 histTail = hp; /* meaning hp->Hnext == NULL */ in hinsert()
99 histTail = pp; /* we must have been last */ in hremove()
111 if (histTail == NULL) { in discardExcess()
124 while (histCount > (unsigned)hlen && (np = histTail) != &Histlist) { in discardExcess()
888 if (histTail && histTail->Htime >= np->Htime) in mergeInsertionPoint()
889 pTime = histTail; /* new entry goes at the end */ in mergeInsertionPoint()
1110 hp = histTail; in dophist()