1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-02 22:11:54 +02:00

16635: make sure we display lists in singlelinezle mode

This commit is contained in:
Geoff Wing 2002-02-19 00:06:54 +00:00
parent d8ed8e9659
commit 71749e822a
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2002-02-19 Geoff Wing <gcw@zsh.org>
* 16635: Src/Zle/zle_refresh.c: make sure we display lists in
singlelinezle mode
2002-02-18 Wayne Davison <wayned@users.sourceforge.net>
* 16672: Src/hist.c: Fixed a just-introduced bug in prepnexthistent()

View file

@ -393,7 +393,7 @@ zrefresh(void)
if (termflags & TERM_SHORT) {
singlerefresh();
return;
goto singlelineout;
}
if (cs < 0) {
@ -643,6 +643,7 @@ individually */
onumscrolls = numscrolls;
if (nlnct > vmaxln)
vmaxln = nlnct;
singlelineout:
fflush(shout); /* make sure everything is written out */
/* if we have a new list showing, note it; if part of the list has been
@ -1183,7 +1184,6 @@ singlerefresh(void)
qbuf = nbuf;
nbuf = obuf;
obuf = qbuf;
fflush(shout); /* make sure everything is written out */
}
/**/