diff 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
line wrap: on
line diff
--- a/src/vim9execute.c
+++ b/src/vim9execute.c
@@ -2572,6 +2572,7 @@ call_def_function(
 			trycmd->tcd_caught = TRUE;
 		    }
 		    did_emsg = got_int = did_throw = FALSE;
+		    force_abort = need_rethrow = FALSE;
 		    catch_exception(current_exception);
 		}
 		break;