about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--Src/Zle/compresult.c4
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index e15903a44..3b75dcb66 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2000-05-31  Sven Wischnowsky  <wischnow@zsh.org>
 
+	* 11682: Src/Zle/compresult.c: move to last cursor after not
+ 	asking a second time if list should be shown
+	
 	* 11679: Src/Zle/compcore.c: fix for ignore-line style
 	
 	* 11678: Completion/Base/_arguments: avoid reporting the same
diff --git a/Src/Zle/compresult.c b/Src/Zle/compresult.c
index c55b65b0a..4ffd4d62a 100644
--- a/Src/Zle/compresult.c
+++ b/Src/Zle/compresult.c
@@ -1661,7 +1661,9 @@ asklist(void)
 	    putc('\n', shout);
 	settyinfo(&shttyinfo);
 	minfo.asked = 1;
-    }
+    } else if (minfo.asked == 2)
+	tcmultout(TCUP, TCMULTUP, nlnct);
+
     return (minfo.asked ? minfo.asked - 1 : 0);
 }