diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-02-26 10:24:48 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-02-26 10:24:48 -0500 |
commit | 23f8696317143da03c3cd3688478b32b6912a351 (patch) | |
tree | fac5c14a25344630aff866b3caef8137084b4961 /src/nvim/mbyte.c | |
parent | bb56564900b600a6c19acffa950615eb87dba42e (diff) | |
parent | 1a15cf84c29c984d600f438122edc70be2ac91a1 (diff) | |
download | rneovim-23f8696317143da03c3cd3688478b32b6912a351.tar.gz rneovim-23f8696317143da03c3cd3688478b32b6912a351.tar.bz2 rneovim-23f8696317143da03c3cd3688478b32b6912a351.zip |
Merge pull request #4277 from Jun-T/lang2locale
build: install *.mo into the "standard" directory
Diffstat (limited to 'src/nvim/mbyte.c')
-rw-r--r-- | src/nvim/mbyte.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/mbyte.c b/src/nvim/mbyte.c index fdd83f9dac..f0a249919f 100644 --- a/src/nvim/mbyte.c +++ b/src/nvim/mbyte.c @@ -571,8 +571,8 @@ char_u * mb_init(void) #ifdef HAVE_WORKING_LIBINTL /* GNU gettext 0.10.37 supports this feature: set the codeset used for * translated messages independently from the current locale. */ - (void)bind_textdomain_codeset(VIMPACKAGE, - enc_utf8 ? "utf-8" : (char *)p_enc); + (void)bind_textdomain_codeset(PROJECT_NAME, + enc_utf8 ? "utf-8" : (char *)p_enc); #endif |