Mercurial > vim
changeset 26024:cb5f2515a450 v8.2.3546
patch 8.2.3546: build failure without the +eval feature
Commit: https://github.com/vim/vim/commit/09f7723d5a8694889350b13e3f6b4a9c3ed4c41f
Author: zeertzjq <zeertzjq@outlook.com>
Date: Wed Oct 20 17:21:24 2021 +0100
patch 8.2.3546: build failure without the +eval feature
Problem: Build failure without the +eval feature.
Solution: Add #ifdef. (closes https://github.com/vim/vim/issues/9025)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 20 Oct 2021 18:30:03 +0200 |
parents | 2f42137853b0 |
children | 480c0f6e2822 |
files | src/errors.h src/version.c |
diffstat | 2 files changed, 4 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/errors.h +++ b/src/errors.h @@ -160,10 +160,12 @@ EXTERN char e_list_value_does_not_have_e INIT(= N_("E711: List value does not have enough items")); EXTERN char e_cannot_slice_dictionary[] INIT(= N_("E719: Cannot slice a Dictionary")); +#endif EXTERN char e_conflicts_with_value_of_listchars[] INIT(= N_("E834: Conflicts with value of 'listchars'")); EXTERN char e_conflicts_with_value_of_fillchars[] INIT(= N_("E835: Conflicts with value of 'fillchars'")); +#ifdef FEAT_EVAL EXTERN char e_assert_fails_second_arg[] INIT(= N_("E856: \"assert_fails()\" second argument must be a string or a list with one or two strings")); EXTERN char e_using_invalid_value_as_string_str[]