summaryrefslogtreecommitdiff
path: root/src/vim9compile.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-04-09 22:12:44 +0200
committerBram Moolenaar <Bram@vim.org>2021-04-09 22:12:44 +0200
commit1088b69451c739c698cf4c2003c2b994458ad18b (patch)
treefb73f56746f67cdb10a6871a11b4c0dd2f9a633a /src/vim9compile.c
parent2a38908b05c1d3973a8edbeb5b3e05a11332faf0 (diff)
downloadvim-git-1088b69451c739c698cf4c2003c2b994458ad18b.tar.gz
patch 8.2.2741: Vim9: Partial call does not check right argumentsv8.2.2741
Problem: Vim9: Partial call does not check right arguments. Solution: Adjust the offset for whether the partial is before or after the arguments. (closes #8091)
Diffstat (limited to 'src/vim9compile.c')
-rw-r--r--src/vim9compile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vim9compile.c b/src/vim9compile.c
index 2cfc12798..c2735dcbd 100644
--- a/src/vim9compile.c
+++ b/src/vim9compile.c
@@ -1969,7 +1969,7 @@ generate_PCALL(
for (i = 0; i < argcount; ++i)
{
- int offset = -argcount + i - 1;
+ int offset = -argcount + i - (at_top ? 0 : 1);
type_T *actual = ((type_T **)stack->ga_data)[
stack->ga_len + offset];
type_T *expected;