summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Src/hist.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/Src/hist.c b/Src/hist.c
index e0b0475fb..e0be6e030 100644
--- a/Src/hist.c
+++ b/Src/hist.c
@@ -1779,6 +1779,8 @@ void
resizehistents(void)
{
if (histlinect > histsiz) {
+ /* The reason we don't just call freehistnode(hist_ring->down) is
+ * so that we can honor the HISTEXPIREDUPSFIRST setting. */
putoldhistentryontop(0);
freehistnode((HashNode)hist_ring);
while (histlinect > histsiz) {