comparison src/if_python3.c @ 26897:d02d40f0261c v8.2.3977

patch 8.2.3977: error messages are spread out Commit: https://github.com/vim/vim/commit/9a846fbaa569b3690d70606f2a86e97f77a05496 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jan 1 21:59:18 2022 +0000 patch 8.2.3977: error messages are spread out Problem: Error messages are spread out. Solution: Move more error messages to errors.h.
author Bram Moolenaar <Bram@vim.org>
date Sat, 01 Jan 2022 23:00:04 +0100
parents 06a137af96f8
children 85866e069c24
comparison
equal deleted inserted replaced
26896:e58f8c38545d 26897:d02d40f0261c
1069 if (!py3initialised) 1069 if (!py3initialised)
1070 { 1070 {
1071 #ifdef DYNAMIC_PYTHON3 1071 #ifdef DYNAMIC_PYTHON3
1072 if (!python3_enabled(TRUE)) 1072 if (!python3_enabled(TRUE))
1073 { 1073 {
1074 emsg(_("E263: Sorry, this command is disabled, the Python library could not be loaded.")); 1074 emsg(_(e_sorry_this_command_is_disabled_python_library_could_not_be_found));
1075 goto fail; 1075 goto fail;
1076 } 1076 }
1077 #endif 1077 #endif
1078 1078
1079 init_structs(); 1079 init_structs();