comparison src/errors.h @ 26972:cd1da076adb4 v8.2.4015

patch 8.2.4015: build failure with tiny features Commit: https://github.com/vim/vim/commit/269dc6361888ca23ef8d87f2795753f0bacd95e6 Author: Bram Moolenaar <Bram@vim.org> 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.
author Bram Moolenaar <Bram@vim.org>
date Thu, 06 Jan 2022 12:45:03 +0100
parents 014c9414ce02
children 8796f1384750
comparison
equal deleted inserted replaced
26971:1c9d5c0c0775 26972:cd1da076adb4
2316 #ifdef FEAT_EVAL 2316 #ifdef FEAT_EVAL
2317 EXTERN char e_missing_end_marker_str[] 2317 EXTERN char e_missing_end_marker_str[]
2318 INIT(= N_("E990: Missing end marker '%s'")); 2318 INIT(= N_("E990: Missing end marker '%s'"));
2319 EXTERN char e_cannot_use_heredoc_here[] 2319 EXTERN char e_cannot_use_heredoc_here[]
2320 INIT(= N_("E991: cannot use =<< here")); 2320 INIT(= N_("E991: cannot use =<< here"));
2321 #endif
2321 EXTERN char e_not_allowed_in_modeline_when_modelineexpr_is_off[] 2322 EXTERN char e_not_allowed_in_modeline_when_modelineexpr_is_off[]
2322 INIT(= N_("E992: Not allowed in a modeline when 'modelineexpr' is off")); 2323 INIT(= N_("E992: Not allowed in a modeline when 'modelineexpr' is off"));
2324 #ifdef FEAT_EVAL
2323 EXTERN char e_window_nr_is_not_popup_window[] 2325 EXTERN char e_window_nr_is_not_popup_window[]
2324 INIT(= N_("E993: window %d is not a popup window")); 2326 INIT(= N_("E993: window %d is not a popup window"));
2325 EXTERN char e_not_allowed_in_popup_window[] 2327 EXTERN char e_not_allowed_in_popup_window[]
2326 INIT(= N_("E994: Not allowed in a popup window")); 2328 INIT(= N_("E994: Not allowed in a popup window"));
2327 EXTERN char e_cannot_modify_existing_variable[] 2329 EXTERN char e_cannot_modify_existing_variable[]