[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: lynx-dev Display problem with dev.13 [PATCH]
From: |
Doug Kaufman |
Subject: |
Re: lynx-dev Display problem with dev.13 [PATCH] |
Date: |
Mon, 30 Oct 2000 23:52:11 -0800 (PST) |
On Mon, 30 Oct 2000, Doug Kaufman wrote:
> I haven't had a chance to check it out, but I noted some changes in
> the 2.8.4dev.12.patch file to LYCurses.c in regard to LYlines, with
The two lines added by this patch were removed in the patch to dev.12.
Before that they were present in all cases (as
#ifdef NOTDEFINED ... #else ). Putting them back seems to fix the
DJGPP port. I suspect that they should go back for other platforms,
too, but I leave that for others to decide.
Doug
--- lynx2-8-4/src/LYCurses.c Wed Oct 25 08:35:28 2000
+++ lynx2-8-4/src/LYCurses.c.new Mon Oct 30 23:37:06 2000
@@ -1257,6 +1257,10 @@
LYnoVideo(2);
}
#endif /* HAVE_TTYTYPE */
+#ifdef __DJGPP__
+ LYlines=LINES;
+ LYcols=COLS;
+#endif /* __DJGPP__ */
#if defined(PDCURSES_EXP) && defined(WIN_EX) && defined(CJK_EX) /* 1999/08/26
(Thu) 17:53:38 */
{
__
Doug Kaufman
Internet: address@hidden
; To UNSUBSCRIBE: Send "unsubscribe lynx-dev" to address@hidden
- lynx-dev Display problem with dev.13, Doug Kaufman, 2000/10/29
- Re: lynx-dev Display problem with dev.13, Thomas Dickey, 2000/10/29
- Re: lynx-dev Display problem with dev.13, Doug Kaufman, 2000/10/29
- Re: lynx-dev Display problem with dev.13, Thomas Dickey, 2000/10/29
- Re: lynx-dev Display problem with dev.13, Doug Kaufman, 2000/10/30
- Re: lynx-dev Display problem with dev.13, Thomas Dickey, 2000/10/30
- Re: lynx-dev Display problem with dev.13, Thomas Dickey, 2000/10/30
- Re: lynx-dev Display problem with dev.13, Doug Kaufman, 2000/10/30
- Re: lynx-dev Display problem with dev.13 [PATCH],
Doug Kaufman <=