forked from aniani/vim
		
	patch 8.2.0139: MS-Windows: default for IME is inconsistent
Problem: MS-Windows: default for IME is inconsistent. Solution: Also make IME default enabled with MVC. (Ken Takata, closes #5508)
This commit is contained in:
		| @@ -33,7 +33,7 @@ | |||||||
| # | # | ||||||
| #	OLE interface: OLE=yes (usually with GUI=yes) | #	OLE interface: OLE=yes (usually with GUI=yes) | ||||||
| # | # | ||||||
| #	IME support: IME=yes	(requires GUI=yes) | #	IME support: IME=yes	(default is yes) | ||||||
| #	  DYNAMIC_IME=[yes or no]  (to load the imm32.dll dynamically, default | #	  DYNAMIC_IME=[yes or no]  (to load the imm32.dll dynamically, default | ||||||
| #	  is yes) | #	  is yes) | ||||||
| #	Global IME support: GIME=yes (requires GUI=yes) | #	Global IME support: GIME=yes (requires GUI=yes) | ||||||
| @@ -812,6 +812,9 @@ OLE_IDL = if_ole.idl | |||||||
| OLE_LIB = oleaut32.lib | OLE_LIB = oleaut32.lib | ||||||
| !endif | !endif | ||||||
|  |  | ||||||
|  | !ifndef IME | ||||||
|  | IME = yes | ||||||
|  | !endif | ||||||
| !if "$(IME)" == "yes" | !if "$(IME)" == "yes" | ||||||
| CFLAGS = $(CFLAGS) -DFEAT_MBYTE_IME | CFLAGS = $(CFLAGS) -DFEAT_MBYTE_IME | ||||||
| ! ifndef DYNAMIC_IME | ! ifndef DYNAMIC_IME | ||||||
|   | |||||||
| @@ -742,6 +742,8 @@ static char *(features[]) = | |||||||
|  |  | ||||||
| static int included_patches[] = | static int included_patches[] = | ||||||
| {   /* Add new patch number below this line */ | {   /* Add new patch number below this line */ | ||||||
|  | /**/ | ||||||
|  |     139, | ||||||
| /**/ | /**/ | ||||||
|     138, |     138, | ||||||
| /**/ | /**/ | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user