mirror of
https://github.com/vim/vim.git
synced 2025-10-03 05:14:07 -04:00
patch 8.2.3865: Vim9: compiler complains about using "try" as a struct member
Problem: Vim9: compiler complains about using "try" as a struct member. Solution: Rename "try" to "tryref".
This commit is contained in:
@@ -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:
|
||||
|
Reference in New Issue
Block a user