For 1.5.10: (Re: Display bug in the index with arrow_cursor)
I'm just resending this patch with "1.5.10" subject.
On Wed, 30 Mar 2005, Tamotsu Takahashi wrote:
> On Wed, Mar 30, 2005 at 07:01:08AM +0900, Tamotsu Takahashi wrote:
> > the bug is in redraw_index (menu.c).
>
> Oops, I'm sorry, I attached a wrong file to the previous message.
> Try this new one.
> --- menu.c.BAK 2005-03-29 22:13:46.000000000 +0900
> +++ menu.c 2005-03-30 10:55:05.000000000 +0900
> @@ -228,7 +228,10 @@
> addch (' ');
> }
> else
> - move (i - menu->top + menu->offset, 3);
> + {
> + attrset (menu->color (i));
> + addstr (" ");
> + }
>
> print_enriched_string (menu->color(i), (unsigned char *) buf, 1);
> SETCOLOR (MT_COLOR_NORMAL);
--
tamo