comparison src/dict.c @ 21691:f41c646cb8b9 v8.2.1395

patch 8.2.1395: Vim9: no error if declaring a funcref with lower case letter Commit: https://github.com/vim/vim/commit/98b4f145eb89405021e23a4a37db51d60a75a1d0 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Aug 8 15:46:01 2020 +0200 patch 8.2.1395: Vim9: no error if declaring a funcref with lower case letter Problem: Vim9: no error if declaring a funcref with a lower case letter. Solution: Check the name after the type is inferred. Fix confusing name.
author Bram Moolenaar <Bram@vim.org>
date Sat, 08 Aug 2020 16:00:04 +0200
parents 140a9082f87c
children 5a2373c25a86
comparison
equal deleted inserted replaced
21690:0d43ab8ae99d 21691:f41c646cb8b9
964 { 964 {
965 // Disallow replacing a builtin function in l: and g:. 965 // Disallow replacing a builtin function in l: and g:.
966 // Check the key to be valid when adding to any scope. 966 // Check the key to be valid when adding to any scope.
967 if (d1->dv_scope == VAR_DEF_SCOPE 967 if (d1->dv_scope == VAR_DEF_SCOPE
968 && HI2DI(hi2)->di_tv.v_type == VAR_FUNC 968 && HI2DI(hi2)->di_tv.v_type == VAR_FUNC
969 && var_check_func_name(hi2->hi_key, di1 == NULL)) 969 && var_wrong_func_name(hi2->hi_key, di1 == NULL))
970 break; 970 break;
971 if (!valid_varname(hi2->hi_key)) 971 if (!valid_varname(hi2->hi_key))
972 break; 972 break;
973 } 973 }
974 if (di1 == NULL) 974 if (di1 == NULL)