diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2004-07-15 16:32:38 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2004-07-15 16:32:38 +0000 |
commit | 055ad4c6900d3b9be67f46ceb660e3c3277e58f8 (patch) | |
tree | 9db1aca963382ed53b3f4489f01e7f0bf85a851b /main.c | |
parent | [w3m-dev 04091] option panel: gettextize select list (diff) | |
download | w3m-055ad4c6900d3b9be67f46ceb660e3c3277e58f8.tar.gz w3m-055ad4c6900d3b9be67f46ceb660e3c3277e58f8.zip |
[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>
Diffstat (limited to '')
-rw-r--r-- | main.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: main.c,v 1.242 2004/04/04 16:47:20 ukai Exp $ */ +/* $Id: main.c,v 1.243 2004/07/15 16:32:38 ukai Exp $ */ #define MAINPROGRAM #include "fm.h" #include <signal.h> @@ -5323,7 +5323,7 @@ DEFUN(mouse, MOUSE, "mouse operation") int btn, x, y; btn = (unsigned char)getch() - 32; -#if defined(__CYGWIN__) +#if defined(__CYGWIN__) && CYGWIN_VERSION_DLL_MAJOR < 1005 if (cygwin_mouse_btn_swapped) { if (btn == MOUSE_BTN2_DOWN) btn = MOUSE_BTN3_DOWN; |