comparison src/misc1.c @ 15914:c94b46f98b1a v8.1.0963

patch 8.1.0963: illegal memory access when using 'incsearch' commit https://github.com/vim/vim/commit/4a7d2d3b407ed695450bb7f43166e2f2722a6836 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Feb 21 16:25:50 2019 +0100 patch 8.1.0963: illegal memory access when using 'incsearch' Problem: Illegal memory access when using 'incsearch'. Solution: Reset highlight_match when changing text. (closes https://github.com/vim/vim/issues/4022)
author Bram Moolenaar <Bram@vim.org>
date Thu, 21 Feb 2019 16:30:15 +0100
parents 7fad90423bd2
children de810c9651c8
comparison
equal deleted inserted replaced
15913:ffd1b4052ee1 15914:c94b46f98b1a
2852 need_wait_return = save_need_wait_return; 2852 need_wait_return = save_need_wait_return;
2853 } 2853 }
2854 changed_int(); 2854 changed_int();
2855 } 2855 }
2856 ++CHANGEDTICK(curbuf); 2856 ++CHANGEDTICK(curbuf);
2857
2858 #ifdef FEAT_SEARCH_EXTRA
2859 // If a pattern is highlighted, the position may now be invalid.
2860 highlight_match = FALSE;
2861 #endif
2857 } 2862 }
2858 2863
2859 /* 2864 /*
2860 * Internal part of changed(), no user interaction. 2865 * Internal part of changed(), no user interaction.
2861 */ 2866 */