From 5de80f85b458fbec49851a95f4d154e4f08fcbb0 Mon Sep 17 00:00:00 2001 From: Sven Wischnowsky Date: Wed, 12 Apr 2000 08:31:55 +0000 Subject: display number of lines instead of number of matches when asking whether to show completion lists (10686) --- Src/Zle/compresult.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Src/Zle/compresult.c') diff --git a/Src/Zle/compresult.c b/Src/Zle/compresult.c index 6870bbcd9..78b22ff59 100644 --- a/Src/Zle/compresult.c +++ b/Src/Zle/compresult.c @@ -1585,8 +1585,8 @@ mod_export int asklist(void) (!complistmax && listdat.nlines >= lines))) { int qup; zsetterm(); - qup = printfmt("zsh: do you wish to see all %n possibilities? ", - listdat.nlist, 1, 1); + qup = printfmt("zsh: do you wish to see all %n lines? ", + listdat.nlines, 1, 1); fflush(shout); if (getzlequery() != 'y') { if (clearflag) { -- cgit 1.4.1