1
0
forked from aniani/vim

patch 8.2.3963: build failure with tiny and small features

Problem:    Build failure with tiny and small features. (Tony Mechelynck)
Solution:   Adjust #ifdefs.
This commit is contained in:
Bram Moolenaar
2022-01-01 00:55:28 +00:00
parent d0819d11ec
commit 096ca73dac
3 changed files with 6 additions and 2 deletions

View File

@@ -826,7 +826,7 @@ iemsg(char *s)
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