summaryrefslogtreecommitdiff
path: root/src/filepath.c
diff options
context:
space:
mode:
authorYegappan Lakshmanan <yegappan@yahoo.com>2022-04-04 15:16:54 +0100
committerBram Moolenaar <Bram@vim.org>2022-04-04 15:16:54 +0100
commit4829c1c9e9095a3303caec9af7d02f6547f6df0e (patch)
tree2b3819cd2ea17b652ba29f3a8a6ea9945ec6c4bb /src/filepath.c
parent7a411a306f90339d8686e42ac16e1ae4fc7533c5 (diff)
downloadvim-git-4829c1c9e9095a3303caec9af7d02f6547f6df0e.tar.gz
patch 8.2.4683: verbose check with dict_find() to see if a key is presentv8.2.4683
Problem: Verbose check with dict_find() to see if a key is present. Solution: Add dict_has_key(). (Yegappan Lakshmanan, closes #10074)
Diffstat (limited to 'src/filepath.c')
-rw-r--r--src/filepath.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/filepath.c b/src/filepath.c
index 3786ef633..1bde4200d 100644
--- a/src/filepath.c
+++ b/src/filepath.c
@@ -1605,7 +1605,7 @@ readdirex_dict_arg(typval_T *tv, int *cmp)
return FAIL;
}
- if (dict_find(tv->vval.v_dict, (char_u *)"sort", -1) != NULL)
+ if (dict_has_key(tv->vval.v_dict, "sort"))
compare = dict_get_string(tv->vval.v_dict, (char_u *)"sort", FALSE);
else
{