comparison 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
comparison
equal deleted inserted replaced
19050:4daf5054ae02 19051:c6248ef5b41b
616 */ 616 */
617 int 617 int
618 dict_get_tv(dict_T *d, char_u *key, typval_T *rettv) 618 dict_get_tv(dict_T *d, char_u *key, typval_T *rettv)
619 { 619 {
620 dictitem_T *di; 620 dictitem_T *di;
621 char_u *s;
622 621
623 di = dict_find(d, key, -1); 622 di = dict_find(d, key, -1);
624 if (di == NULL) 623 if (di == NULL)
625 return FAIL; 624 return FAIL;
626 copy_tv(&di->di_tv, rettv); 625 copy_tv(&di->di_tv, rettv);