summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-07-05 15:32:17 +0200
committerBram Moolenaar <Bram@vim.org>2020-07-05 15:32:17 +0200
commit788123c00c4b7acc4e6ba3e9f1cc8b175ae9aae8 (patch)
tree40e46b4b57d58123aa92d26b087cb9da9fb46699
parente9f262bdff2defa248e5d40b6520251799581ea4 (diff)
downloadvim-git-8.2.1130.tar.gz
patch 8.2.1130: Vim9: bar not recognized after function callv8.2.1130
Problem: Vim9: bar not recognized after function call Solution: Skip whitespace. (closes #6391)
-rw-r--r--src/testdir/test_vim9_cmd.vim7
-rw-r--r--src/version.c2
-rw-r--r--src/vim9compile.c3
3 files changed, 11 insertions, 1 deletions
diff --git a/src/testdir/test_vim9_cmd.vim b/src/testdir/test_vim9_cmd.vim
index 53d964fa8..d7c01aae9 100644
--- a/src/testdir/test_vim9_cmd.vim
+++ b/src/testdir/test_vim9_cmd.vim
@@ -216,6 +216,13 @@ def Test_bar_after_command()
RedrawAndEcho()
assert_match('did redraw', Screenline(&lines))
+ def CallAndEcho()
+ let x = 'did redraw'
+ reg_executing() | echo x
+ enddef
+ CallAndEcho()
+ assert_match('did redraw', Screenline(&lines))
+
if has('unix')
# bar in filter write command does not start new command
def WriteToShell()
diff --git a/src/version.c b/src/version.c
index d079d2909..c94988faf 100644
--- a/src/version.c
+++ b/src/version.c
@@ -755,6 +755,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1130,
+/**/
1129,
/**/
1128,
diff --git a/src/vim9compile.c b/src/vim9compile.c
index 5c3d08d30..b4209a1fe 100644
--- a/src/vim9compile.c
+++ b/src/vim9compile.c
@@ -6985,7 +6985,8 @@ compile_def_function(ufunc_T *ufunc, int set_return_type, cctx_T *outer_cctx)
// drop the return value
generate_instr_drop(&cctx, ISN_DROP, 1);
- line = p;
+
+ line = skipwhite(p);
continue;
}
// CMD_let cannot happen, compile_assignment() above is used