summaryrefslogtreecommitdiffstats
path: root/src/dict.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-01-04 19:00:11 +0100
committerBram Moolenaar <Bram@vim.org>2020-01-04 19:00:11 +0100
commitab782c5b6f127b84f56e546004352de66e7cf66b (patch)
tree019bc1bef68137dc5202b7bc40fe15d55547cf07 /src/dict.c
parent3d8a513b46b586cb5d2893e7f28c5f51c4dfdc17 (diff)
patch 8.2.0086: build error for small versionv8.2.0086
Problem: Build error for small version. (Tony Mechelynck) Solution: Only use "user_data" with the +eval feature. Remove unused variable.
Diffstat (limited to 'src/dict.c')
-rw-r--r--src/dict.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/dict.c b/src/dict.c
index f170937b61..a9a909bc2a 100644
--- a/src/dict.c
+++ b/src/dict.c
@@ -618,7 +618,6 @@ dict_find(dict_T *d, char_u *key, int len)
dict_get_tv(dict_T *d, char_u *key, typval_T *rettv)
{
dictitem_T *di;
- char_u *s;
di = dict_find(d, key, -1);
if (di == NULL)