commit | 2eae3d24d7fe8beed64652bc5c1cbddd09dafc9a | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Fri Oct 07 15:09:27 2022 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Fri Oct 07 15:09:27 2022 +0100 |
tree | 1c1189201bed6f74ce02ee2ffdb46d698b405b84 | |
parent | bdc09a18fca32715687d9911a431da69186528cc [diff] [blame] |
patch 9.0.0684: skipped :exe command fails compilation on MS-Windows Problem: Skipped :exe command fails compilation on MS-Windows. Solution: Adjust return value when skipping.
diff --git a/src/vim9instr.c b/src/vim9instr.c index 4407d59..9c3b2a9 100644 --- a/src/vim9instr.c +++ b/src/vim9instr.c
@@ -1876,6 +1876,7 @@ { isn_T *isn; + RETURN_OK_IF_SKIP(cctx); if ((isn = generate_instr_drop(cctx, isn_type, count)) == NULL) return FAIL; isn->isn_arg.number = count;