diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-07-27 21:43:28 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-07-27 21:43:28 +0200 |
commit | b13ab99908097d54e21ab5adad22f4ad2a8ec688 (patch) | |
tree | 8b35ffaf45b3ed9b21bce9bc8f6422b31564be69 /src/proto | |
parent | 622b3568fa1baf07671d31390815fb0a55a99891 (diff) | |
download | vim-git-b13ab99908097d54e21ab5adad22f4ad2a8ec688.tar.gz |
patch 8.2.1306: checking for first character of dict key is inconsistentv8.2.1306
Problem: Checking for first character of dict key is inconsistent.
Solution: Add eval_isdictc(). (closes #6546)
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/eval.pro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/eval.pro b/src/proto/eval.pro index 5d04e01ac..a528d3e43 100644 --- a/src/proto/eval.pro +++ b/src/proto/eval.pro @@ -58,6 +58,7 @@ int get_name_len(char_u **arg, char_u **alias, int evaluate, int verbose); char_u *find_name_end(char_u *arg, char_u **expr_start, char_u **expr_end, int flags); int eval_isnamec(int c); int eval_isnamec1(int c); +int eval_isdictc(int c); int handle_subscript(char_u **arg, typval_T *rettv, evalarg_T *evalarg, int verbose); int item_copy(typval_T *from, typval_T *to, int deep, int copyID); void echo_one(typval_T *rettv, int with_space, int *atstart, int *needclr); |