aboutsummaryrefslogtreecommitdiffstats
path: root/fm.h
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 /fm.h
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>
Diffstat (limited to '')
-rw-r--r--fm.h8
1 files changed, 4 insertions, 4 deletions
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);