# HG changeset patch # User Bram Moolenaar # Date 1641469503 -3600 # Node ID cd1da076adb43a4f271b1f81a99686a2537b797b # Parent 1c9d5c0c077575633395bb6814eee38ab5353f99 patch 8.2.4015: build failure with tiny features Commit: https://github.com/vim/vim/commit/269dc6361888ca23ef8d87f2795753f0bacd95e6 Author: Bram Moolenaar Date: Thu Jan 6 11:43:21 2022 +0000 patch 8.2.4015: build failure with tiny features Problem: Build failure with tiny features. (Tony Mechelynck) Solution: Adjust #ifdefs. diff --git a/src/errors.h b/src/errors.h --- a/src/errors.h +++ b/src/errors.h @@ -2318,8 +2318,10 @@ EXTERN char e_missing_end_marker_str[] INIT(= N_("E990: Missing end marker '%s'")); EXTERN char e_cannot_use_heredoc_here[] INIT(= N_("E991: cannot use =<< here")); +#endif EXTERN char e_not_allowed_in_modeline_when_modelineexpr_is_off[] INIT(= N_("E992: Not allowed in a modeline when 'modelineexpr' is off")); +#ifdef FEAT_EVAL EXTERN char e_window_nr_is_not_popup_window[] INIT(= N_("E993: window %d is not a popup window")); EXTERN char e_not_allowed_in_popup_window[] diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -751,6 +751,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 4015, +/**/ 4014, /**/ 4013,