[w3m-dev 04092] remove __CYGWIN__ && LANG == JA

* remove condition LANG == JA && __CYGWIN__
* cygwin_mouse_btn_swapped enabled when before 1.5.x
From: WATANABE Katsuyuki <knabe@sannet.ne.jp>
This commit is contained in:
Fumitoshi UKAI
2004-07-15 16:32:38 +00:00
parent ac3a1a45c6
commit 055ad4c690
8 changed files with 41 additions and 32 deletions

8
fm.h
View File

@@ -1,4 +1,4 @@
/* $Id: fm.h,v 1.125 2004/04/16 18:47:19 ukai Exp $ */
/* $Id: fm.h,v 1.126 2004/07/15 16:32:38 ukai Exp $ */
/*
* w3m: WWW wo Miru utility
*
@@ -759,11 +759,11 @@ typedef struct http_request {
*/
extern int LINES, COLS;
#if defined(__CYGWIN__) && LANG == JA
#if defined(__CYGWIN__)
extern int LASTLINE;
#else /* not defined(__CYGWIN__) || LANG != JA */
#else /* not defined(__CYGWIN__) */
#define LASTLINE (LINES-1)
#endif /* not defined(__CYGWIN__) || LANG != JA */
#endif /* not defined(__CYGWIN__) */
global int Tabstop init(8);
global int IndentIncr init(4);