diff options
author | Bram Moolenaar <Bram@vim.org> | 2021-12-21 09:42:09 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-12-21 09:42:09 +0000 |
commit | 0d807107b66e0d30d4f338c272962af5714c400e (patch) | |
tree | 08f92991f2306d674e5bf4f9993ee666fda2b71d /src/vim9instr.c | |
parent | 6f79e614b25caebd35cf0d82b6f3b7e0733849ec (diff) | |
download | vim-git-0d807107b66e0d30d4f338c272962af5714c400e.tar.gz |
patch 8.2.3865: Vim9: compiler complains about using "try" as a struct memberv8.2.3865
Problem: Vim9: compiler complains about using "try" as a struct member.
Solution: Rename "try" to "tryref".
Diffstat (limited to 'src/vim9instr.c')
-rw-r--r-- | src/vim9instr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vim9instr.c b/src/vim9instr.c index d82efe94e..48c90dc44 100644 --- a/src/vim9instr.c +++ b/src/vim9instr.c @@ -2088,7 +2088,7 @@ delete_instr(isn_T *isn) break; case ISN_TRY: - vim_free(isn->isn_arg.try.try_ref); + vim_free(isn->isn_arg.tryref.try_ref); break; case ISN_CEXPR_CORE: |