about summary refs log tree commit diff
path: root/Src/hist.c
diff options
context:
space:
mode:
authorBart Schaefer <barts@users.sourceforge.net>2001-06-29 05:51:08 +0000
committerBart Schaefer <barts@users.sourceforge.net>2001-06-29 05:51:08 +0000
commitc1e68c35a24c508a779b80daa9a91e08e537e3c8 (patch)
tree21507ea39bee2eac23087bb003b8fe09b2364bb0 /Src/hist.c
parent80c9e0d083abb1583aefded41c06f25ccfefdf55 (diff)
downloadzsh-c1e68c35a24c508a779b80daa9a91e08e537e3c8.tar.gz
zsh-c1e68c35a24c508a779b80daa9a91e08e537e3c8.tar.xz
zsh-c1e68c35a24c508a779b80daa9a91e08e537e3c8.zip
Wayne's prepnexthistent fix for HIST_TEMPSTORE.
Diffstat (limited to 'Src/hist.c')
-rw-r--r--Src/hist.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/Src/hist.c b/Src/hist.c
index 5b0fe0309..842863992 100644
--- a/Src/hist.c
+++ b/Src/hist.c
@@ -922,6 +922,10 @@ prepnexthistent(void)
 
     if (curline_in_ring)
 	unlinkcurline();
+    if (hist_ring && hist_ring->flags & HIST_TMPSTORE) {
+	curhist--;
+	freehistnode((HashNode)hist_ring);
+    }
 
     if (histlinect < histsiz) {
 	he = (Histent)zcalloc(sizeof *he);