diff options
author | Hinidu <hinidu@gmail.com> | 2014-04-12 10:20:21 +0300 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-05-28 13:08:55 -0400 |
commit | 1299d08be706146e132ec818af49d529ab951763 (patch) | |
tree | 88746c8936a993936d9364b28226946ee20473bc | |
parent | 3e93fedfe9a692880345d2f7d32d8bc66d639907 (diff) | |
download | rneovim-1299d08be706146e132ec818af49d529ab951763.tar.gz rneovim-1299d08be706146e132ec818af49d529ab951763.tar.bz2 rneovim-1299d08be706146e132ec818af49d529ab951763.zip |
Remove FEAT_GETTEXT
Support for message translations using gettext()
-rw-r--r-- | config/config.h.in | 1 | ||||
-rw-r--r-- | src/nvim/ex_cmds2.c | 4 |
2 files changed, 1 insertions, 4 deletions
diff --git a/config/config.h.in b/config/config.h.in index cc37d778c0..5155a61eb3 100644 --- a/config/config.h.in +++ b/config/config.h.in @@ -110,7 +110,6 @@ #define FEAT_FIND_ID #define FEAT_FKMAP #define FEAT_FOLDING -#define FEAT_GETTEXT #define FEAT_HANGULIN #define FEAT_INS_EXPAND #define FEAT_JUMPLIST diff --git a/src/nvim/ex_cmds2.c b/src/nvim/ex_cmds2.c index 0f5cb6b9e2..c37998e26e 100644 --- a/src/nvim/ex_cmds2.c +++ b/src/nvim/ex_cmds2.c @@ -3414,9 +3414,7 @@ void ex_language(exarg_T *eap) if (what != LC_TIME) { /* Tell gettext() what to translate to. It apparently doesn't - * use the currently effective locale. Also do this when - * FEAT_GETTEXT isn't defined, so that shell commands use this - * value. */ + * use the currently effective locale. */ if (what == LC_ALL) { vim_setenv((char_u *)"LANG", name); |