diff options
author | kuriyama <kuriyama@FreeBSD.org> | 1998-11-15 01:01:05 +0800 |
---|---|---|
committer | kuriyama <kuriyama@FreeBSD.org> | 1998-11-15 01:01:05 +0800 |
commit | 6edaf59dd064852f43ecbbd19392815086f210e1 (patch) | |
tree | 4f55aae6e5e0dc844f6e251685cd9a20b4db25b8 /japanese | |
parent | a2a07746af4729f56f22ac543b6226a028409505 (diff) | |
download | freebsd-ports-gnome-6edaf59dd064852f43ecbbd19392815086f210e1.tar.gz freebsd-ports-gnome-6edaf59dd064852f43ecbbd19392815086f210e1.tar.zst freebsd-ports-gnome-6edaf59dd064852f43ecbbd19392815086f210e1.zip |
'links' problem fix.
PR: ports/8647
Submitted by: Shigeyuki FUKUSHIMA <shige@kuis.kyoto-u.ac.jp>
Diffstat (limited to 'japanese')
-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); + } + |