diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-06-14 04:38:41 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-14 04:38:41 -0700 |
commit | fdbb5a8f727c8fa2f84f6ae3952598a25db37cb3 (patch) | |
tree | a5153aeadf1bae34dc775fb01186acab745e4ccc /src/nvim/quickfix.c | |
parent | a0496e3b76e417ed718f72665d3c3f99a385367d (diff) | |
parent | 18b031ea1d3830c8ff25f4d5ee488f68f464dbee (diff) | |
download | rneovim-fdbb5a8f727c8fa2f84f6ae3952598a25db37cb3.tar.gz rneovim-fdbb5a8f727c8fa2f84f6ae3952598a25db37cb3.tar.bz2 rneovim-fdbb5a8f727c8fa2f84f6ae3952598a25db37cb3.zip |
Merge #10208 from janlazo/vim-8.0.0931
vim-patch:8.0.{931,933,953}
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 3c945a505b..0e4fa0afc6 100644 --- a/src/nvim/quickfix.c +++ b/src/nvim/quickfix.c @@ -2204,7 +2204,7 @@ static int qf_jump_edit_buffer(qf_info_T *qi, qfline_T *qf_ptr, int forceit, // Open help file (do_ecmd() will set b_help flag, readfile() will // set b_p_ro flag). if (!can_abandon(curbuf, forceit)) { - EMSG(_(e_nowrtmsg)); + no_write_message(); retval = false; } else { retval = do_ecmd(qf_ptr->qf_fnum, NULL, NULL, NULL, (linenr_T)1, |