comparison src/errors.h @ 26899:f78ad6ee739a v8.2.3978

patch 8.2.3978: build error when using dynamycally loaded Python 3 Commit: https://github.com/vim/vim/commit/6b1a99dfe33cf5a1d7f82febd81face85ac1b8a6 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jan 2 01:04:09 2022 +0000 patch 8.2.3978: build error when using dynamycally loaded Python 3 Problem: Build error when using dynamycally loaded Python 3. Solution: Adjust #ifdef.
author Bram Moolenaar <Bram@vim.org>
date Sun, 02 Jan 2022 02:15:03 +0100
parents d02d40f0261c
children aa65d1808bd0
comparison
equal deleted inserted replaced
26898:614dcfac5c37 26899:f78ad6ee739a
600 EXTERN char e_cscope_connection_str_not_founc[] 600 EXTERN char e_cscope_connection_str_not_founc[]
601 INIT(= N_("E261: cscope connection %s not found")); 601 INIT(= N_("E261: cscope connection %s not found"));
602 EXTERN char e_error_reading_cscope_connection_nr[] 602 EXTERN char e_error_reading_cscope_connection_nr[]
603 INIT(= N_("E262: error reading cscope connection %d")); 603 INIT(= N_("E262: error reading cscope connection %d"));
604 #endif 604 #endif
605 #ifdef DYNAMIC_PYTHON 605 #if defined(DYNAMIC_PYTHON) || defined(DYNAMIC_PYTHON3)
606 EXTERN char e_sorry_this_command_is_disabled_python_library_could_not_be_found[] 606 EXTERN char e_sorry_this_command_is_disabled_python_library_could_not_be_found[]
607 INIT(= N_("E263: Sorry, this command is disabled, the Python library could not be loaded.")); 607 INIT(= N_("E263: Sorry, this command is disabled, the Python library could not be loaded."));
608 #endif 608 #endif
609 #if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) 609 #if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3)
610 EXTERN char e_python_error_initialising_io_object[] 610 EXTERN char e_python_error_initialising_io_object[]