diff options
author | Jun Kuriyama <kuriyama@FreeBSD.org> | 1998-11-14 17:01:05 +0000 |
---|---|---|
committer | Jun Kuriyama <kuriyama@FreeBSD.org> | 1998-11-14 17:01:05 +0000 |
commit | a6c58f66b83cb717bf51570ae13bcde5cadf4803 (patch) | |
tree | d6ea04ba668babf2577cff4635c2a825bb382b59 /japanese/lynx/files | |
parent | 08da26b2287e18007649c7b96965464f103285c2 (diff) | |
download | ports-a6c58f66b83cb717bf51570ae13bcde5cadf4803.tar.gz ports-a6c58f66b83cb717bf51570ae13bcde5cadf4803.zip |
Notes
Diffstat (limited to 'japanese/lynx/files')
-rw-r--r-- | japanese/lynx/files/patch-ai | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/japanese/lynx/files/patch-ai b/japanese/lynx/files/patch-ai new file mode 100644 index 000000000000..30d33f5030be --- /dev/null +++ b/japanese/lynx/files/patch-ai @@ -0,0 +1,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); + } + |