diff src/vim9compile.c @ 29475:fab3a46d0af7 v9.0.0079

patch 9.0.0079: error in autoload script not reported for 'foldexpr' Commit: https://github.com/vim/vim/commit/6809ff978a5c5b798952db9fa663df9e1776f3ff Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jul 26 15:10:56 2022 +0100 patch 9.0.0079: error in autoload script not reported for 'foldexpr' Problem: Error in autoload script not reported for 'foldexpr'. Solution: Reset "emsg_off" when auto-loading a script. (closes https://github.com/vim/vim/issues/10685)
author Bram Moolenaar <Bram@vim.org>
date Tue, 26 Jul 2022 16:15:03 +0200
parents 49d8b54802f3
children 495dc54392fa
line wrap: on
line diff
--- a/src/vim9compile.c
+++ b/src/vim9compile.c
@@ -610,12 +610,20 @@ find_imported(char_u *name, size_t len, 
     ret = find_imported_in_script(name, len, current_sctx.sc_sid);
     if (ret != NULL && load && (ret->imp_flags & IMP_FLAGS_AUTOLOAD))
     {
-	scid_T dummy;
+	scid_T	dummy;
+	int	save_emsg_off = emsg_off;
+
+	// "emsg_off" will be set when evaluating an expression silently, but
+	// we do want to know about errors in a script.  Also because it then
+	// aborts when an error is encountered.
+	emsg_off = FALSE;
 
 	// script found before but not loaded yet
 	ret->imp_flags &= ~IMP_FLAGS_AUTOLOAD;
 	(void)do_source(SCRIPT_ITEM(ret->imp_sid)->sn_name, FALSE,
 							    DOSO_NONE, &dummy);
+
+	emsg_off = save_emsg_off;
     }
     return ret;
 }