diff options
Diffstat (limited to 'Src/hist.c')
-rw-r--r-- | Src/hist.c | 2 |
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) { |