aboutsummaryrefslogtreecommitdiffstats
path: root/display.c
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2002-11-15 15:23:45 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2002-11-15 15:23:45 +0000
commit8b70770b0d7fe9611f9125fc3db9ec219b7534ac (patch)
tree0f678af6e635dacbe843f28b48ce8f13357d82f3 /display.c
parentNEWS: func: DOWNLOAD_LIST (diff)
downloadw3m-8b70770b0d7fe9611f9125fc3db9ec219b7534ac.tar.gz
w3m-8b70770b0d7fe9611f9125fc3db9ec219b7534ac.zip
[w3m-dev 03432] Re: tab browser
* display.c (displayBuffer): s/buf->LINES/LASTLINES/ in cygwin From: Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp>
Diffstat (limited to '')
-rw-r--r--display.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/display.c b/display.c
index bd00f15..48d9768 100644
--- a/display.c
+++ b/display.c
@@ -1,4 +1,4 @@
-/* $Id: display.c,v 1.31 2002/11/13 15:49:01 ukai Exp $ */
+/* $Id: display.c,v 1.32 2002/11/15 15:23:45 ukai Exp $ */
#include <signal.h>
#include "fm.h"
@@ -281,7 +281,7 @@ displayBuffer(Buffer *buf, int mode)
}
else if (n < 0 && n > -buf->LINES) {
#if defined(__CYGWIN__) && LANG == JA
- move(buf->LINES + n + 1, 0);
+ move(LASTLINE + n + 1, 0);
clrtoeolx();
refresh();
#endif /* defined(__CYGWIN__) && LANG == JA */