diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-01-04 19:00:11 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-01-04 19:00:11 +0100 |
commit | ab782c5b6f127b84f56e546004352de66e7cf66b (patch) | |
tree | 019bc1bef68137dc5202b7bc40fe15d55547cf07 /src/dict.c | |
parent | 3d8a513b46b586cb5d2893e7f28c5f51c4dfdc17 (diff) | |
download | vim-git-ab782c5b6f127b84f56e546004352de66e7cf66b.tar.gz |
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.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/dict.c b/src/dict.c index f170937b6..a9a909bc2 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) |