From 8595cb4102d547388d0d9e699d10a14f8f7aa71c Mon Sep 17 00:00:00 2001 From: Tatsuya Kinoshita Date: Sat, 24 Jan 2015 23:36:40 +0900 Subject: Integrate Debian changes into 020_debian.patch (closes: #776112) (debian/patches/*.patch except 010_upstream.patch are merged) --- debian/patches/230_cygwin-lang.patch | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 debian/patches/230_cygwin-lang.patch (limited to 'debian/patches/230_cygwin-lang.patch') diff --git a/debian/patches/230_cygwin-lang.patch b/debian/patches/230_cygwin-lang.patch deleted file mode 100644 index 5a6671e..0000000 --- a/debian/patches/230_cygwin-lang.patch +++ /dev/null @@ -1,30 +0,0 @@ -Subject: Do not fail when LANG is not set on Cygwin -From: Tatsuya Kinoshita , Jarek Czekalski -Bug: https://sourceforge.net/p/w3m/patches/66/ - - Check whether the value of LC_ALL, LC_CTYPE or LANG is not NULL in - check_cygwin_console(). - -diff --git a/terms.c b/terms.c -index 7a3c987..399d117 100644 ---- a/terms.c -+++ b/terms.c -@@ -222,6 +222,7 @@ static void - check_cygwin_console(void) - { - char *term = getenv("TERM"); -+ char *ctype; - HANDLE hWnd; - - if (term == NULL) -@@ -236,7 +237,9 @@ check_cygwin_console(void) - isLocalConsole = 1; - } - } -- if (strncmp(getenv("LANG"), "ja", 2) == 0) { -+ if (((ctype = getenv("LC_ALL")) || -+ (ctype = getenv("LC_CTYPE")) || -+ (ctype = getenv("LANG"))) && strncmp(ctype, "ja", 2) == 0) { - isWinConsole = TERM_CYGWIN_RESERVE_IME; - } - #ifdef SUPPORT_WIN9X_CONSOLE_MBCS -- cgit v1.2.3