diff options
author | Dundar Göc <gocdundar@gmail.com> | 2022-03-08 19:58:45 +0100 |
---|---|---|
committer | Dundar Göc <gocdundar@gmail.com> | 2022-03-09 09:29:57 +0100 |
commit | 05f643f9d235b0db881acf94ce05ad3359ffb058 (patch) | |
tree | 99f5f801df3609f4c44dc89f8e1094a7b516f748 /src/nvim/eval/funcs.c | |
parent | f27068caad517c52e700477d51343cbebd8d4df0 (diff) | |
download | rneovim-05f643f9d235b0db881acf94ce05ad3359ffb058.tar.gz rneovim-05f643f9d235b0db881acf94ce05ad3359ffb058.tar.bz2 rneovim-05f643f9d235b0db881acf94ce05ad3359ffb058.zip |
chore(lgtm): fix "empty block without comment" warnings
Diffstat (limited to 'src/nvim/eval/funcs.c')
-rw-r--r-- | src/nvim/eval/funcs.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/nvim/eval/funcs.c b/src/nvim/eval/funcs.c index f47c9c482b..d81a408663 100644 --- a/src/nvim/eval/funcs.c +++ b/src/nvim/eval/funcs.c @@ -9706,8 +9706,7 @@ free_lstval: if (set_unnamed) { // Discard the result. We already handle the error case. - if (op_reg_set_previous(regname)) { - } + op_reg_set_previous(regname); } } |