comparison src/globals.h @ 25342:c4298ed56ffa v8.2.3208

patch 8.2.3208: dynamic library load error does not mention why it failed Commit: https://github.com/vim/vim/commit/1a3e5747b7df7ddda312bbfd18e04fc2122001fb Author: Martin Tournoij <martin@arp242.net> Date: Sat Jul 24 13:57:29 2021 +0200 patch 8.2.3208: dynamic library load error does not mention why it failed Problem: Dynamic library load error does not mention why it failed. Solution: Add the error message. (Martin Tournoij, closes https://github.com/vim/vim/issues/8621)
author Bram Moolenaar <Bram@vim.org>
date Sat, 24 Jul 2021 14:00:05 +0200
parents e2be9f3c5907
children cb92a49cc8e7
comparison
equal deleted inserted replaced
25341:040fe01278e8 25342:c4298ed56ffa
1630 || defined(DYNAMIC_ICONV) \ 1630 || defined(DYNAMIC_ICONV) \
1631 || defined(DYNAMIC_GETTEXT) \ 1631 || defined(DYNAMIC_GETTEXT) \
1632 || defined(DYNAMIC_MZSCHEME) \ 1632 || defined(DYNAMIC_MZSCHEME) \
1633 || defined(DYNAMIC_LUA) \ 1633 || defined(DYNAMIC_LUA) \
1634 || defined(FEAT_TERMINAL) 1634 || defined(FEAT_TERMINAL)
1635 EXTERN char e_loadlib[] INIT(= N_("E370: Could not load library %s")); 1635 EXTERN char e_loadlib[] INIT(= N_("E370: Could not load library %s: %s"));
1636 EXTERN char e_loadfunc[] INIT(= N_("E448: Could not load library function %s")); 1636 EXTERN char e_loadfunc[] INIT(= N_("E448: Could not load library function %s"));
1637 #endif 1637 #endif
1638 EXTERN char e_nobang[] INIT(= N_("E477: No ! allowed")); 1638 EXTERN char e_nobang[] INIT(= N_("E477: No ! allowed"));
1639 #ifndef FEAT_ARABIC 1639 #ifndef FEAT_ARABIC
1640 EXTERN char e_noarabic[] INIT(= N_("E800: Arabic cannot be used: Not enabled at compile time\n")); 1640 EXTERN char e_noarabic[] INIT(= N_("E800: Arabic cannot be used: Not enabled at compile time\n"));