comparison src/evalfunc.c @ 16489:42910f306377 v8.1.1248

patch 8.1.1248: no test for dec mouse commit https://github.com/vim/vim/commit/92fd599e0d85bdd7462926b2e5bcf7ce65fccc50 Author: Bram Moolenaar <Bram@vim.org> Date: Thu May 2 23:00:22 2019 +0200 patch 8.1.1248: no test for dec mouse Problem: No test for dec mouse. Solution: Add some tests for dec mouse. Add "no_query_mouse".
author Bram Moolenaar <Bram@vim.org>
date Thu, 02 May 2019 23:15:06 +0200
parents 7ae2396cef62
children 9484fc00ac6b
comparison
equal deleted inserted replaced
16488:08a98bd701fd 16489:42910f306377
14300 save_starting = -1; 14300 save_starting = -1;
14301 } 14301 }
14302 } 14302 }
14303 else if (STRCMP(name, (char_u *)"nfa_fail") == 0) 14303 else if (STRCMP(name, (char_u *)"nfa_fail") == 0)
14304 nfa_fail_for_testing = val; 14304 nfa_fail_for_testing = val;
14305 else if (STRCMP(name, (char_u *)"no_query_mouse") == 0)
14306 no_query_mouse_for_testing = val;
14305 else if (STRCMP(name, (char_u *)"ALL") == 0) 14307 else if (STRCMP(name, (char_u *)"ALL") == 0)
14306 { 14308 {
14307 disable_char_avail_for_testing = FALSE; 14309 disable_char_avail_for_testing = FALSE;
14308 disable_redraw_for_testing = FALSE; 14310 disable_redraw_for_testing = FALSE;
14309 ignore_redraw_flag_for_testing = FALSE; 14311 ignore_redraw_flag_for_testing = FALSE;
14310 nfa_fail_for_testing = FALSE; 14312 nfa_fail_for_testing = FALSE;
14313 no_query_mouse_for_testing = FALSE;
14311 if (save_starting >= 0) 14314 if (save_starting >= 0)
14312 { 14315 {
14313 starting = save_starting; 14316 starting = save_starting;
14314 save_starting = -1; 14317 save_starting = -1;
14315 } 14318 }