diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-01-01 21:59:18 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-01-01 21:59:18 +0000 |
commit | 9a846fbaa569b3690d70606f2a86e97f77a05496 (patch) | |
tree | cbe5304927fe21586593c94342e4f023aa3e0837 /src/if_python3.c | |
parent | b34689010a587e85ff724051f276513a15c634d0 (diff) | |
download | vim-git-9a846fbaa569b3690d70606f2a86e97f77a05496.tar.gz |
patch 8.2.3977: error messages are spread outv8.2.3977
Problem: Error messages are spread out.
Solution: Move more error messages to errors.h.
Diffstat (limited to 'src/if_python3.c')
-rw-r--r-- | src/if_python3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/if_python3.c b/src/if_python3.c index 938ab8dd5..3bf387aa6 100644 --- a/src/if_python3.c +++ b/src/if_python3.c @@ -1071,7 +1071,7 @@ Python3_Init(void) #ifdef DYNAMIC_PYTHON3 if (!python3_enabled(TRUE)) { - emsg(_("E263: Sorry, this command is disabled, the Python library could not be loaded.")); + emsg(_(e_sorry_this_command_is_disabled_python_library_could_not_be_found)); goto fail; } #endif |