diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-01-06 11:43:21 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-01-06 11:43:21 +0000 |
commit | 269dc6361888ca23ef8d87f2795753f0bacd95e6 (patch) | |
tree | 66c551ae4465310933ddea4c91dcfd786ddb5210 /src/errors.h | |
parent | c689f8c3d98fffe7e13730e198ce120934528f9c (diff) | |
download | vim-git-269dc6361888ca23ef8d87f2795753f0bacd95e6.tar.gz |
patch 8.2.4015: build failure with tiny featuresv8.2.4015
Problem: Build failure with tiny features. (Tony Mechelynck)
Solution: Adjust #ifdefs.
Diffstat (limited to 'src/errors.h')
-rw-r--r-- | src/errors.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/errors.h b/src/errors.h index 3b765a166..2d164cd9f 100644 --- 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[] |