We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 009d84a commit 923e43bCopy full SHA for 923e43b
2 files changed
src/os_win32.c
@@ -500,12 +500,11 @@ dyn_libintl_init()
500
if (hLibintlDLL)
501
return 1;
502
/* Load gettext library (libintl.dll) */
503
+ hLibintlDLL = vimLoadLib(GETTEXT_DLL);
504
#ifdef GETTEXT_DLL_ALT
505
if (!hLibintlDLL)
506
hLibintlDLL = vimLoadLib(GETTEXT_DLL_ALT);
507
#endif
- if (!hLibintlDLL)
508
- hLibintlDLL = vimLoadLib(GETTEXT_DLL);
509
510
{
511
if (p_verbose > 0)
src/version.c
@@ -746,6 +746,8 @@ static char *(features[]) =
746
747
static int included_patches[] =
748
{ /* Add new patch number below this line */
749
+/**/
750
+ 1189,
751
/**/
752
1188,
753
0 commit comments