diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-10-26 12:50:51 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-26 12:50:51 -0700 |
commit | ad532d3c660791337a9ea5100ab1e330480e382a (patch) | |
tree | 6142d4a147f26451a8679d441930f7691cecfdc3 /src/nvim/quickfix.c | |
parent | 4b5e2f7a0b275230456f92892a89c781616284a8 (diff) | |
parent | 6dcc1d100572b462f75f64f7e98a0b5d80144cba (diff) | |
download | rneovim-ad532d3c660791337a9ea5100ab1e330480e382a.tar.gz rneovim-ad532d3c660791337a9ea5100ab1e330480e382a.tar.bz2 rneovim-ad532d3c660791337a9ea5100ab1e330480e382a.zip |
Merge #11294 from tomtomjhj/vim-8.1.2173
vim-patch:8.1.{2173,2207,2218}
Diffstat (limited to 'src/nvim/quickfix.c')
-rw-r--r-- | src/nvim/quickfix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/quickfix.c b/src/nvim/quickfix.c index b951773860..52dd3c1c98 100644 --- a/src/nvim/quickfix.c +++ b/src/nvim/quickfix.c @@ -2463,7 +2463,7 @@ static void qf_jump_goto_line(linenr_T qf_lnum, int qf_col, char_u qf_viscol, // Move the cursor to the first line in the buffer pos_T save_cursor = curwin->w_cursor; curwin->w_cursor.lnum = 0; - if (!do_search(NULL, '/', qf_pattern, (long)1, SEARCH_KEEP, NULL, NULL)) { + if (!do_search(NULL, '/', qf_pattern, (long)1, SEARCH_KEEP, NULL)) { curwin->w_cursor = save_cursor; } } |