Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

Re: ZLE redraw bug



On Thu, 27 Mar 2008 03:47:50 -0400
"Matt Wozniski" <godlygeek@xxxxxxxxx> wrote:
> OK, this has been bugging me for a while, and was still an issue with
> 4.3.5 dev 4, so I finally sat down to try to get a manageable test
> case for it.  Hopefully this is small enough.  :)

Thanks for removing my excuse for not looking at it.  You must know how
much I enjoy complist.c.  (If anyone doesn't, I would be delighted to
refresh their memory.)

As always I don't really understand very much around here, but the point
at which it's going wrong is when it's refreshing the screen to clear up
the list.  It seems that it needs a bit of prodding in the right
direction to realise that it should be reinitialising the list rather
than using what it last printed.  I think.

I'll commit this because I do *not* want to think any more about it;
everyone is encouraged to give the menu selection code a good work out.

Index: Src/Zle/complist.c
===================================================================
RCS file: /cvsroot/zsh/zsh/Src/Zle/complist.c,v
retrieving revision 1.108
diff -u -r1.108 complist.c
--- Src/Zle/complist.c	28 Feb 2008 23:12:37 -0000	1.108
+++ Src/Zle/complist.c	28 Mar 2008 23:14:08 -0000
@@ -53,7 +53,7 @@
  * selected: Used to signal between domenucomplete() and menuselect()
  *           that a selected entry has been found.  Or something.
  * mlbeg:    The first line of the logical array of all matches that
- *           fits on screen.
+ *           fits on screen.  Setting this to -1 forces a redraw.
  * mlend:    The line after the last that fits on screen.
  * mscroll:  1 if the scrolling prompt is shown on screen.
  * mrestlines: The number of screen lines remaining to be processed.
@@ -3216,6 +3216,15 @@
 	}
     }
     if (!noselect && (!dat || acc)) {
+	/*
+	 * I added the following because in certain cases the zrefresh()
+	 * here was screwing up the list.  Forcing it to redraw the
+	 * screen worked.  The case in question (courtesy of
+	 * "Matt Wozniski" <godlygeek@xxxxxxxxx>) is in zsh-workers/24756.
+	 *
+	 * *** PLEASE DON'T ASK ME WHY THIS IS NECESSARY ***
+	 */
+	mlbeg = -1;
 	showinglist = ((validlist && !nolist) ? -2 : 0);
 	onlyexpl = oe;
 	if (!smatches)

-- 
Peter Stephenson <p.w.stephenson@xxxxxxxxxxxx>
Web page now at http://homepage.ntlworld.com/p.w.stephenson/



Messages sorted by: Reverse Date, Date, Thread, Author