Mercurial > vim
changeset 19159:352b74803d3e v8.2.0139
patch 8.2.0139: MS-Windows: default for IME is inconsistent
Commit: https://github.com/vim/vim/commit/f0764e8bb6511aa3bf1d6f52852b4284676ee661
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Jan 20 22:05:34 2020 +0100
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 https://github.com/vim/vim/issues/5508)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 20 Jan 2020 22:15:03 +0100 |
parents | c43e9d4d8c93 |
children | c621b50edae9 |
files | src/Make_mvc.mak src/version.c |
diffstat | 2 files changed, 6 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/Make_mvc.mak +++ b/src/Make_mvc.mak @@ -33,7 +33,7 @@ # # 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 # is yes) # Global IME support: GIME=yes (requires GUI=yes) @@ -812,6 +812,9 @@ OLE_IDL = if_ole.idl OLE_LIB = oleaut32.lib !endif +!ifndef IME +IME = yes +!endif !if "$(IME)" == "yes" CFLAGS = $(CFLAGS) -DFEAT_MBYTE_IME ! ifndef DYNAMIC_IME