comparison src/eval.c @ 15146:7903dce131d4 v8.1.0583

patch 8.1.0583: using illogical name for get_dict_number()/get_dict_string() commit https://github.com/vim/vim/commit/8f66717a1f835b8194139d158c1e2df8b30c3ef3 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Dec 14 15:38:31 2018 +0100 patch 8.1.0583: using illogical name for get_dict_number()/get_dict_string() Problem: Using illogical name for get_dict_number()/get_dict_string(). Solution: Rename to start with dict_.
author Bram Moolenaar <Bram@vim.org>
date Fri, 14 Dec 2018 15:45:06 +0100
parents 6344377dc7dc
children de63593896b3
comparison
equal deleted inserted replaced
15145:14de49f92ace 15146:7903dce131d4
4061 * Lambda: {arg, arg -> expr} 4061 * Lambda: {arg, arg -> expr}
4062 * Dictionary: {key: val, key: val} 4062 * Dictionary: {key: val, key: val}
4063 */ 4063 */
4064 case '{': ret = get_lambda_tv(arg, rettv, evaluate); 4064 case '{': ret = get_lambda_tv(arg, rettv, evaluate);
4065 if (ret == NOTDONE) 4065 if (ret == NOTDONE)
4066 ret = get_dict_tv(arg, rettv, evaluate); 4066 ret = dict_get_tv(arg, rettv, evaluate);
4067 break; 4067 break;
4068 4068
4069 /* 4069 /*
4070 * Option value: &name 4070 * Option value: &name
4071 */ 4071 */