diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-06-16 11:42:09 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-06-16 11:42:09 +0100 |
commit | 93a1096fe48e12095544924adb267e3b8a16b221 (patch) | |
tree | a6d426e87bc49d8fcee200052d17c83302f32629 /src/evalwindow.c | |
parent | 44068e97dbd8fc8ebd93113e436a1e37a6bff52c (diff) | |
download | vim-git-93a1096fe48e12095544924adb267e3b8a16b221.tar.gz |
patch 8.2.5107: some callers of rettv_list_alloc() check for not OKv8.2.5107
Problem: Some callers of rettv_list_alloc() check for not OK. (Christ van
Willegen)
Solution: Use "==" instead of "!=" when checking the return value.
Diffstat (limited to 'src/evalwindow.c')
-rw-r--r-- | src/evalwindow.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/evalwindow.c b/src/evalwindow.c index 20ac66f53..00d63cd36 100644 --- a/src/evalwindow.c +++ b/src/evalwindow.c @@ -471,7 +471,7 @@ f_gettabinfo(typval_T *argvars, typval_T *rettv) dict_T *d; int tpnr = 0; - if (rettv_list_alloc(rettv) != OK) + if (rettv_list_alloc(rettv) == FAIL) return; if (in_vim9script() && check_for_opt_number_arg(argvars, 0) == FAIL) @@ -510,7 +510,7 @@ f_getwininfo(typval_T *argvars, typval_T *rettv) dict_T *d; short tabnr = 0, winnr; - if (rettv_list_alloc(rettv) != OK) + if (rettv_list_alloc(rettv) == FAIL) return; if (in_vim9script() && check_for_opt_number_arg(argvars, 0) == FAIL) @@ -779,7 +779,7 @@ f_win_findbuf(typval_T *argvars, typval_T *rettv) if (in_vim9script() && check_for_number_arg(argvars, 0) == FAIL) return; - if (rettv_list_alloc(rettv) != FAIL) + if (rettv_list_alloc(rettv) == OK) win_findbuf(argvars, rettv->vval.v_list); } @@ -847,7 +847,7 @@ f_win_id2tabwin(typval_T *argvars, typval_T *rettv) if (in_vim9script() && check_for_number_arg(argvars, 0) == FAIL) return; - if (rettv_list_alloc(rettv) != FAIL) + if (rettv_list_alloc(rettv) == OK) win_id2tabwin(argvars, rettv->vval.v_list); } @@ -1143,7 +1143,7 @@ f_winlayout(typval_T *argvars, typval_T *rettv) { tabpage_T *tp; - if (rettv_list_alloc(rettv) != OK) + if (rettv_list_alloc(rettv) == FAIL) return; if (in_vim9script() && check_for_opt_number_arg(argvars, 0) == FAIL) |