diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-04-17 11:17:10 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-04-17 11:17:10 +0000 |
commit | 30a98cc4d6e54f2a5c356579aa60c2af8d344101 (patch) | |
tree | 6cc8874b7712a0be1f5a506dee62ca984d53b130 /Src/Zle/zle_tricky.c | |
parent | d85d34d8183a8a45bfb09c4242ef9368860be6d9 (diff) | |
download | zsh-30a98cc4d6e54f2a5c356579aa60c2af8d344101.tar.gz zsh-30a98cc4d6e54f2a5c356579aa60c2af8d344101.tar.xz zsh-30a98cc4d6e54f2a5c356579aa60c2af8d344101.zip |
scrolling in completion lists and menu-selection, version1
Diffstat (limited to 'Src/Zle/zle_tricky.c')
-rw-r--r-- | Src/Zle/zle_tricky.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/Zle/zle_tricky.c b/Src/Zle/zle_tricky.c index 51a77b224..f18babbbd 100644 --- a/Src/Zle/zle_tricky.c +++ b/Src/Zle/zle_tricky.c @@ -1997,7 +1997,7 @@ listlist(LinkList l) fprintf(shout, "zsh: do you wish to see all %d lines? ", nlines)); qup = ((l + columns - 1) / columns) - 1; fflush(shout); - if (getzlequery() != 'y') { + if (getzlequery(1) != 'y') { if (clearflag) { putc('\r', shout); tcmultout(TCUP, TCMULTUP, qup); |