about summary refs log tree commit diff
path: root/Src
diff options
context:
space:
mode:
authorClint Adams <clint@users.sourceforge.net>2002-04-12 23:24:21 +0000
committerClint Adams <clint@users.sourceforge.net>2002-04-12 23:24:21 +0000
commit68615c0100b8daf0fa2e895f6834b68c0535f8cb (patch)
tree295d7921109740dd2f17ad743b0f390291606130 /Src
parent0382f720c49aa741cecd0891c7a2e7537e206bc9 (diff)
downloadzsh-68615c0100b8daf0fa2e895f6834b68c0535f8cb.tar.gz
zsh-68615c0100b8daf0fa2e895f6834b68c0535f8cb.tar.xz
zsh-68615c0100b8daf0fa2e895f6834b68c0535f8cb.zip
16972: complete for aaaa, zone, mx, soa, txt.
Diffstat (limited to 'Src')
-rw-r--r--Src/Zle/zle_refresh.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Src/Zle/zle_refresh.c b/Src/Zle/zle_refresh.c
index 5908b9d33..c432907d1 100644
--- a/Src/Zle/zle_refresh.c
+++ b/Src/Zle/zle_refresh.c
@@ -373,7 +373,7 @@ zrefresh(void)
 
     if (termflags & TERM_SHORT) {
 	singlerefresh();
-	goto singlelineout;
+	return;
     }
 
     if (cs < 0) {
@@ -620,7 +620,6 @@ 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
@@ -1161,6 +1160,7 @@ singlerefresh(void)
     qbuf = nbuf;
     nbuf = obuf;
     obuf = qbuf;
+    fflush(shout);		/* make sure everything is written out */
 }
 
 /**/