aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/eval.c
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2016-12-14 16:16:37 -0500
committerJames McCoy <jamessan@jamessan.com>2016-12-27 14:10:28 -0500
commit3224ade9c3b6e339083ab9e66ce3d3f32e050e09 (patch)
treef54e63aed247b7fdd7fc4b20c96317607d78ec42 /src/nvim/eval.c
parent7565b48e9cc4f64d7bf008d62b4a7479676a7b09 (diff)
downloadrneovim-3224ade9c3b6e339083ab9e66ce3d3f32e050e09.tar.gz
rneovim-3224ade9c3b6e339083ab9e66ce3d3f32e050e09.tar.bz2
rneovim-3224ade9c3b6e339083ab9e66ce3d3f32e050e09.zip
lint
Diffstat (limited to 'src/nvim/eval.c')
-rw-r--r--src/nvim/eval.c3
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;
}