commit | 599410cb3cb19946cd6df22441da5de003e114bb | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sat Apr 10 14:03:43 2021 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Sat Apr 10 14:03:43 2021 +0200 |
tree | 7e8736d5a2c136a8aab567c57e21519d91a11985 | |
parent | 701cc6ca9e940665a9424541f989bb38c853a498 [diff] [blame] |
patch 8.2.2743: Vim9: function state stuck when compiling with ":silent!" Problem: Vim9: function state stuck when compiling with ":silent!". Solution: Check for uf_def_status to be UF_COMPILING.
diff --git a/src/message.c b/src/message.c index 07c3943..f2fe23b 100644 --- a/src/message.c +++ b/src/message.c
@@ -685,6 +685,9 @@ */ if (emsg_silent != 0) { +#ifdef FEAT_EVAL + ++did_emsg_silent; +#endif if (emsg_noredir == 0) { msg_start();