On Tue, Oct 11, 2005 at 06:27:07PM -0400, Thomas Dickey wrote:
> called {has_colors()
> return }1
> called {start_color()
> + called {tparm("\e[%p1%{30}%+%dm", 7)
> + return }"\e[37m"
> + called {tparm("\e[%p1%'('%+%dm", 0)
> + return }"\e[40m"
> started color: COLORS = 8, COLOR_PAIRS = 64
> return }0
> called {use_default_colors()
> + called {assume_default_colors(-1,-1)
> + return }-1
This chunk seems to fix the problem:
--- LYCurses.c.orig 2005-08-24 20:38:55.000000000 -0400
+++ LYCurses.c 2005-10-11 19:22:32.000000000 -0400
@@ -570,6 +570,10 @@
default_fg = DEFAULT_COLOR;
default_bg = DEFAULT_COLOR;
code = 1;
+ } else {
+ default_fg = COLOR_WHITE;
+ default_bg = COLOR_BLACK;
+ default_color_reset = TRUE;
}
}
return code;
--
Thomas E. Dickey
http://invisible-island.net
ftp://invisible-island.net
_______________________________________________
Lynx-dev mailing list
[email protected]
http://lists.nongnu.org/mailman/listinfo/lynx-dev