comparison src/vim9execute.c @ 23656:c6f7df86cd9d v8.2.2370

patch 8.2.2370: Vim9: command fails in catch block Commit: https://github.com/vim/vim/commit/1430ceeb2d4185a8d60fa81007fbc8b74fd68c46 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jan 17 19:20:32 2021 +0100 patch 8.2.2370: Vim9: command fails in catch block Problem: Vim9: command fails in catch block. Solution: Reset force_abort and need_rethrow. (closes https://github.com/vim/vim/issues/7692)
author Bram Moolenaar <Bram@vim.org>
date Sun, 17 Jan 2021 19:30:04 +0100
parents 83a69ada0274
children 9ee9c4246a7f
comparison
equal deleted inserted replaced
23655:1c9c8221f546 23656:c6f7df86cd9d
2570 trycmd_T *trycmd = ((trycmd_T *)trystack->ga_data) 2570 trycmd_T *trycmd = ((trycmd_T *)trystack->ga_data)
2571 + trystack->ga_len - 1; 2571 + trystack->ga_len - 1;
2572 trycmd->tcd_caught = TRUE; 2572 trycmd->tcd_caught = TRUE;
2573 } 2573 }
2574 did_emsg = got_int = did_throw = FALSE; 2574 did_emsg = got_int = did_throw = FALSE;
2575 force_abort = need_rethrow = FALSE;
2575 catch_exception(current_exception); 2576 catch_exception(current_exception);
2576 } 2577 }
2577 break; 2578 break;
2578 2579
2579 // end of ":try" block 2580 // end of ":try" block