commit | 096ca73dacd748a65d080197b842eef6f4423096 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sat Jan 01 00:55:28 2022 +0000 |
committer | Bram Moolenaar <Bram@vim.org> | Sat Jan 01 00:55:28 2022 +0000 |
tree | f5049499836e9eca23aa2f4e3265001f765ca3a1 | |
parent | d0819d11ecdf3bca4b0800ef905091b5e175b6f4 [diff] [blame] |
patch 8.2.3963: build failure with tiny and small features Problem: Build failure with tiny and small features. (Tony Mechelynck) Solution: Adjust #ifdefs.
diff --git a/src/message.c b/src/message.c index 36e4548..e738e6d 100644 --- a/src/message.c +++ b/src/message.c
@@ -826,7 +826,7 @@ if (!emsg_not_now()) { emsg_core((char_u *)s); -#ifdef ABORT_ON_INTERNAL_ERROR +#if defined(ABORT_ON_INTERNAL_ERROR) && defined(FEAT_EVAL) set_vim_var_string(VV_ERRMSG, (char_u *)s, -1); abort(); #endif