comparison src/ex_getln.c @ 14760:fd69edd2c67e v8.1.0392

patch 8.1.0392: error while typing :/foo/s// with 'incsearch' enabled commit https://github.com/vim/vim/commit/50eb16c3b23235b21ce4494673a7741a9a196176 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Sep 15 15:42:40 2018 +0200 patch 8.1.0392: error while typing :/foo/s// with 'incsearch' enabled Problem: Error while typing :/foo/s// with 'incsearch' enabled. Solution: Do not give search errors when highlighting matches.
author Christian Brabandt <cb@256bit.org>
date Sat, 15 Sep 2018 15:45:10 +0200
parents 0a3b9ecf7cb8
children 5e5f2d824189
comparison
equal deleted inserted replaced
14759:f11109e68c68 14760:fd69edd2c67e
386 *patlen = (int)(end - p); 386 *patlen = (int)(end - p);
387 387
388 // parse the address range 388 // parse the address range
389 save_cursor = curwin->w_cursor; 389 save_cursor = curwin->w_cursor;
390 curwin->w_cursor = is_state->search_start; 390 curwin->w_cursor = is_state->search_start;
391 parse_cmd_address(&ea, &dummy); 391 parse_cmd_address(&ea, &dummy, TRUE);
392 if (ea.addr_count > 0) 392 if (ea.addr_count > 0)
393 { 393 {
394 // Allow for reverse match. 394 // Allow for reverse match.
395 if (ea.line2 < ea.line1) 395 if (ea.line2 < ea.line1)
396 { 396 {