blob: 30d33f5030be7e6dd5c56b8b8aa006feaeed5320 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
--- src/LYCurses.c.orig Wed Nov 11 11:11:52 1998
+++ src/LYCurses.c Wed Nov 11 11:10:32 1998
@@ -1679,6 +1679,13 @@
PUBLIC void lynx_force_repaint NOARGS
{
+/*
+ * This code is harmful to display bold links.
+ * Already set COLOR attributes?
+ * Therefore we do not need this code.
+ * --- by shige@kuis.kyoto-u.ac.jp
+ */
+#if 0 /* do not need */
#if defined(COLOR_CURSES)
chtype a;
#ifndef USE_COLOR_STYLE
@@ -1693,6 +1700,7 @@
#endif
attrset(a);
#endif /* COLOR_CURSES */
+#endif /* do not need */
clearok(curscr, TRUE);
}
|