diff options
author | James McCoy <jamessan@jamessan.com> | 2016-12-14 16:16:37 -0500 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2016-12-27 14:10:28 -0500 |
commit | 3224ade9c3b6e339083ab9e66ce3d3f32e050e09 (patch) | |
tree | f54e63aed247b7fdd7fc4b20c96317607d78ec42 /src/nvim/eval.c | |
parent | 7565b48e9cc4f64d7bf008d62b4a7479676a7b09 (diff) | |
download | rneovim-3224ade9c3b6e339083ab9e66ce3d3f32e050e09.tar.gz rneovim-3224ade9c3b6e339083ab9e66ce3d3f32e050e09.tar.bz2 rneovim-3224ade9c3b6e339083ab9e66ce3d3f32e050e09.zip |
lint
Diffstat (limited to 'src/nvim/eval.c')
-rw-r--r-- | src/nvim/eval.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/nvim/eval.c b/src/nvim/eval.c index 45364a1666..bdbd77337d 100644 --- a/src/nvim/eval.c +++ b/src/nvim/eval.c @@ -15018,8 +15018,7 @@ static void set_qf_ll_list(win_T *wp, typval_T *args, typval_T *rettv) char_u *act = get_tv_string_chk(action_arg); if ((*act == 'a' || *act == 'r' || *act == ' ') && act[1] == NUL) { action = *act; - } - else { + } else { EMSG2(_(e_invact), act); return; } |