diff src/dict.c @ 19051:c6248ef5b41b v8.2.0086

patch 8.2.0086: build error for small version Commit: https://github.com/vim/vim/commit/ab782c5b6f127b84f56e546004352de66e7cf66b Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jan 4 19:00:11 2020 +0100 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.
author Bram Moolenaar <Bram@vim.org>
date Sat, 04 Jan 2020 19:15:04 +0100
parents a3fce2763e83
children ba9f50bfda83
line wrap: on
line diff
--- a/src/dict.c
+++ b/src/dict.c
@@ -618,7 +618,6 @@ dict_find(dict_T *d, char_u *key, int le
 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)