comparison src/option.c @ 11401:fc1939947789 v8.0.0585

patch 8.0.0585: test_options fails when run in the GUI commit https://github.com/vim/vim/commit/86e5792906621be5a6c4a1de9b8852e9caf65ea1 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Apr 23 18:44:26 2017 +0200 patch 8.0.0585: test_options fails when run in the GUI Problem: Test_options fails when run in the GUI. Solution: Also check the 'imactivatekey' value when the GUI is not running. Specify test values that work and that fail.
author Christian Brabandt <cb@256bit.org>
date Sun, 23 Apr 2017 18:45:05 +0200
parents bd05d23bcfe1
children 80491a71c716
comparison
equal deleted inserted replaced
11400:0f8713fe20dc 11401:fc1939947789
6401 #endif 6401 #endif
6402 6402
6403 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK) 6403 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
6404 else if (varp == &p_imak) 6404 else if (varp == &p_imak)
6405 { 6405 {
6406 if (gui.in_use && !im_xim_isvalid_imactivate()) 6406 if (!im_xim_isvalid_imactivate())
6407 errmsg = e_invarg; 6407 errmsg = e_invarg;
6408 } 6408 }
6409 #endif 6409 #endif
6410 6410
6411 #ifdef FEAT_KEYMAP 6411 #ifdef FEAT_KEYMAP