diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-06-27 13:11:50 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-06-27 13:11:50 +0200 |
commit | 0b1cd52ff6bf690388f892be686a91721a082e55 (patch) | |
tree | adfb12e0422054bdf04bc19005e72c647a13985c /src/proto | |
parent | bd84617d1a6766efd59c94aabebb044bef805b99 (diff) | |
download | vim-git-0b1cd52ff6bf690388f892be686a91721a082e55.tar.gz |
patch 8.2.1067: expression "!expr->func()" does not workv8.2.1067
Problem: Expression "!expr->func()" does not work.
Solution: Apply plus and minus earlier. (closes #6348)
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/eval.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/eval.pro b/src/proto/eval.pro index 6ae770ce2..16ba95b82 100644 --- a/src/proto/eval.pro +++ b/src/proto/eval.pro @@ -53,7 +53,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 handle_subscript(char_u **arg, typval_T *rettv, int flags, int verbose, char_u *start_leader, char_u **end_leaderp); +int handle_subscript(char_u **arg, typval_T *rettv, int flags, 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); void ex_echo(exarg_T *eap); |