1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-01 22:05:08 +00:00
freebsd-ports/japanese/lynx/files/patch-ai
Jun Kuriyama a6c58f66b8 'links' problem fix.
PR:		ports/8647
Submitted by:	Shigeyuki FUKUSHIMA <shige@kuis.kyoto-u.ac.jp>
1998-11-14 17:01:05 +00:00

25 lines
556 B
Plaintext

--- 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);
}