comparison src/errors.h @ 29863:62350f19d4ed v9.0.0270

patch 9.0.0270: some values of 'path' and 'tags' invalid in the tiny version Commit: https://github.com/vim/vim/commit/2bd9dbc19fc67395cfa1226dda7326071ab22464 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Aug 25 18:12:06 2022 +0100 patch 9.0.0270: some values of 'path' and 'tags' invalid in the tiny version Problem: Some values of 'path' and 'tags' do not work in the tiny version. Solution: Graduate the +path_extra feature.
author Bram Moolenaar <Bram@vim.org>
date Thu, 25 Aug 2022 19:15:03 +0200
parents 31c598083364
children 86eb4aba16c3
comparison
equal deleted inserted replaced
29862:ae8c7b51bb54 29863:62350f19d4ed
847 // E340 unused 847 // E340 unused
848 EXTERN char e_internal_error_lalloc_zero[] 848 EXTERN char e_internal_error_lalloc_zero[]
849 INIT(= N_("E341: Internal error: lalloc(0, )")); 849 INIT(= N_("E341: Internal error: lalloc(0, )"));
850 EXTERN char e_out_of_memory_allocating_nr_bytes[] 850 EXTERN char e_out_of_memory_allocating_nr_bytes[]
851 INIT(= N_("E342: Out of memory! (allocating %lu bytes)")); 851 INIT(= N_("E342: Out of memory! (allocating %lu bytes)"));
852 #ifdef FEAT_PATH_EXTRA
853 EXTERN char e_invalid_path_number_must_be_at_end_of_path_or_be_followed_by_str[] 852 EXTERN char e_invalid_path_number_must_be_at_end_of_path_or_be_followed_by_str[]
854 INIT(= N_("E343: Invalid path: '**[number]' must be at the end of the path or be followed by '%s'.")); 853 INIT(= N_("E343: Invalid path: '**[number]' must be at the end of the path or be followed by '%s'."));
855 #endif
856 EXTERN char e_cant_find_directory_str_in_cdpath[] 854 EXTERN char e_cant_find_directory_str_in_cdpath[]
857 INIT(= N_("E344: Can't find directory \"%s\" in cdpath")); 855 INIT(= N_("E344: Can't find directory \"%s\" in cdpath"));
858 EXTERN char e_cant_find_file_str_in_path[] 856 EXTERN char e_cant_find_file_str_in_path[]
859 INIT(= N_("E345: Can't find file \"%s\" in path")); 857 INIT(= N_("E345: Can't find file \"%s\" in path"));
860 EXTERN char e_no_more_directory_str_found_in_cdpath[] 858 EXTERN char e_no_more_directory_str_found_in_cdpath[]