diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-02-06 20:28:13 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-02-06 20:28:13 +0000 |
commit | 8cbf2499179db39a46e700ab04d0b36e22bcc1bb (patch) | |
tree | 2ce9615ef9c17d198536190fdccf6f52dae5131f /src/vim9compile.c | |
parent | 5f4ef5f5e5529c147c2274cd0f6416e2546d6fc7 (diff) | |
download | vim-git-8cbf2499179db39a46e700ab04d0b36e22bcc1bb.tar.gz |
patch 8.2.4314: test fails where lines are skippedv8.2.4314
Problem: Test fails where lines are skipped.
Solution: Only give an error when not skipping commands.
Diffstat (limited to 'src/vim9compile.c')
-rw-r--r-- | src/vim9compile.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/vim9compile.c b/src/vim9compile.c index 0bf47e24d..d0479a5fb 100644 --- a/src/vim9compile.c +++ b/src/vim9compile.c @@ -3139,8 +3139,13 @@ compile_def_function( break; case CMD_vim9script: - emsg(_(e_vim9script_can_only_be_used_in_script)); - goto erret; + if (cctx.ctx_skip != SKIP_YES) + { + emsg(_(e_vim9script_can_only_be_used_in_script)); + goto erret; + } + line = (char_u *)""; + break; case CMD_global: if (check_global_and_subst(ea.cmd, p) == FAIL) |