aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2001-11-21 09:09:10 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2001-11-21 09:09:10 +0000
commit501af67443db9282610b352904ee3f9709c9114c (patch)
treecc196fdb46b64bab11ee89847be0072dee00234d
parent2001-11-21 Akinori Ito <aito@fw.ipsj.or.jp> (diff)
downloadw3m-501af67443db9282610b352904ee3f9709c9114c.tar.gz
w3m-501af67443db9282610b352904ee3f9709c9114c.zip
[w3m-dev 02472] cleanup CYGWIN macro
From: Tsutomu Okada <okada@furuno.co.jp>
-rw-r--r--ChangeLog11
-rw-r--r--display.c6
-rw-r--r--fm.h8
-rw-r--r--terms.c10
4 files changed, 22 insertions, 13 deletions
diff --git a/ChangeLog b/ChangeLog
index a87bd22..1a2676a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,15 @@
+2001-11-21 Tsutomu Okada <okada@furuno.co.jp>
+
+ * [w3m-dev 02472] cleanup CYGWIN macro
+ * display.c (displayBuffer): use __CYGWIN__ macro
+ * fm.h: ditto
+ * terms.c (refresh): add condition for isWinConsole which
+ defined only japanese cygwin environment
+
2001-11-21 Akinori Ito <aito@fw.ipsj.or.jp>
- * Homepage URLs and author's mail addresses in the documents
+ * [w3m-dev 02466]
+ Homepage URLs and author's mail addresses in the documents
are changed.
2001-11-21 Fumitoshi UKAI <ukai@debian.or.jp>
diff --git a/display.c b/display.c
index 379038e..60190dd 100644
--- a/display.c
+++ b/display.c
@@ -1,4 +1,4 @@
-/* $Id: display.c,v 1.4 2001/11/20 16:46:32 ukai Exp $ */
+/* $Id: display.c,v 1.5 2001/11/21 09:09:10 ukai Exp $ */
#include <signal.h>
#include "fm.h"
@@ -233,11 +233,11 @@ displayBuffer(Buffer * buf, int mode)
scroll(n);
}
else if (n < 0 && n > -LASTLINE) {
-#if defined(CYGWIN) && LANG == JA
+#if defined(__CYGWIN__) && LANG == JA
move(LASTLINE + n + 1, 0);
clrtoeolx();
refresh();
-#endif /* defined(CYGWIN) && LANG == JA */
+#endif /* defined(__CYGWIN__) && LANG == JA */
rscroll(-n);
}
redrawNLine(buf, n);
diff --git a/fm.h b/fm.h
index 76c7988..a0f1356 100644
--- a/fm.h
+++ b/fm.h
@@ -1,4 +1,4 @@
-/* $Id: fm.h,v 1.7 2001/11/20 16:46:33 ukai Exp $ */
+/* $Id: fm.h,v 1.8 2001/11/21 09:09:10 ukai Exp $ */
/*
* w3m: WWW wo Miru utility
*
@@ -603,12 +603,12 @@ typedef struct http_request {
*/
extern int LINES, COLS;
-#if defined(CYGWIN) && LANG == JA
+#if defined(__CYGWIN__) && LANG == JA
extern int isWinConsole;
#define LASTLINE (LINES-(isWinConsole ? 2 : 1))
-#else /* not defined(CYGWIN) && LANG == JA */
+#else /* not defined(__CYGWIN__) || LANG != JA */
#define LASTLINE (LINES-1)
-#endif /* not defined(CYGWIN) && LANG == JA */
+#endif /* not defined(__CYGWIN__) || LANG != JA */
global int Tabstop init(8);
global int ShowEffect init(TRUE);
diff --git a/terms.c b/terms.c
index e0dd6fc..4c488d8 100644
--- a/terms.c
+++ b/terms.c
@@ -1,4 +1,4 @@
-/* $Id: terms.c,v 1.9 2001/11/19 19:21:11 ukai Exp $ */
+/* $Id: terms.c,v 1.10 2001/11/21 09:09:10 ukai Exp $ */
/*
* An original curses library for EUC-kanji by Akinori ITO, December 1989
* revised by Akinori ITO, January 1995
@@ -1089,13 +1089,13 @@ refresh(void)
* avoid the scroll, I prohibit to draw character on
* (COLS-1,LINES-1).
*/
-#if !defined( BG_COLOR ) || defined( CYGWIN )
-#ifdef CYGWIN
+#if !defined(BG_COLOR) || defined(__CYGWIN__)
+#if defined(__CYGWIN__) && LANG == JA
if (isWinConsole)
-#endif
+#endif /* defined(__CYGWIN__) && LANG == JA */
if (line == LINES - 1 && col == COLS - 1)
break;
-#endif /* not BG_COLOR */
+#endif /* !defined(BG_COLOR) || defined(__CYGWIN__) */
if ((!(pr[col] & S_STANDOUT) && (mode & S_STANDOUT)) ||
(!(pr[col] & S_UNDERLINE) && (mode & S_UNDERLINE)) ||
(!(pr[col] & S_BOLD) && (mode & S_BOLD)) ||