comparison src/message.c @ 26869:659e30d7eeb7 v8.2.3963

patch 8.2.3963: build failure with tiny and small features Commit: https://github.com/vim/vim/commit/096ca73dacd748a65d080197b842eef6f4423096 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jan 1 00:55:28 2022 +0000 patch 8.2.3963: build failure with tiny and small features Problem: Build failure with tiny and small features. (Tony Mechelynck) Solution: Adjust #ifdefs.
author Bram Moolenaar <Bram@vim.org>
date Sat, 01 Jan 2022 02:00:03 +0100
parents bce848ec8b1b
children 06a137af96f8
comparison
equal deleted inserted replaced
26868:34cb29aed168 26869:659e30d7eeb7
824 iemsg(char *s) 824 iemsg(char *s)
825 { 825 {
826 if (!emsg_not_now()) 826 if (!emsg_not_now())
827 { 827 {
828 emsg_core((char_u *)s); 828 emsg_core((char_u *)s);
829 #ifdef ABORT_ON_INTERNAL_ERROR 829 #if defined(ABORT_ON_INTERNAL_ERROR) && defined(FEAT_EVAL)
830 set_vim_var_string(VV_ERRMSG, (char_u *)s, -1); 830 set_vim_var_string(VV_ERRMSG, (char_u *)s, -1);
831 abort(); 831 abort();
832 #endif 832 #endif
833 } 833 }
834 } 834 }