From ab782c5b6f127b84f56e546004352de66e7cf66b Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 4 Jan 2020 19:00:11 +0100 Subject: patch 8.2.0086: build error for small version Problem: Build error for small version. (Tony Mechelynck) Solution: Only use "user_data" with the +eval feature. Remove unused variable. --- src/dict.c | 1 - 1 file changed, 1 deletion(-) (limited to 'src/dict.c') 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) -- cgit v1.2.3