Skip to content

Commit 923e43b

Browse files
committed
patch 7.4.1189
Problem: Using another language on MS-Windows does not work. (Yongwei Wu) Solution: Undo the change to try loading libintl-8.dll first.
1 parent 009d84a commit 923e43b

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

src/os_win32.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -500,12 +500,11 @@ dyn_libintl_init()
500500
if (hLibintlDLL)
501501
return 1;
502502
/* Load gettext library (libintl.dll) */
503+
hLibintlDLL = vimLoadLib(GETTEXT_DLL);
503504
#ifdef GETTEXT_DLL_ALT
504505
if (!hLibintlDLL)
505506
hLibintlDLL = vimLoadLib(GETTEXT_DLL_ALT);
506507
#endif
507-
if (!hLibintlDLL)
508-
hLibintlDLL = vimLoadLib(GETTEXT_DLL);
509508
if (!hLibintlDLL)
510509
{
511510
if (p_verbose > 0)

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -746,6 +746,8 @@ static char *(features[]) =
746746

747747
static int included_patches[] =
748748
{ /* Add new patch number below this line */
749+
/**/
750+
1189,
749751
/**/
750752
1188,
751753
/**/

0 commit comments

Comments
 (0)