diff options
author | ZyX <kp-pav@yandex.ru> | 2017-12-12 00:44:25 +0300 |
---|---|---|
committer | ZyX <kp-pav@yandex.ru> | 2017-12-12 00:44:25 +0300 |
commit | 1f9dd689b9f2b68edbc40cc3c60d46db853dda94 (patch) | |
tree | 1da60fa8fcc4fb8e2a578fac90edae3eb5618202 /src/nvim/option.c | |
parent | 9f534422e6c3649ee40904ae3606455d26b48188 (diff) | |
parent | 8813b29cec13f7410427fbb8913d3753dd6626a7 (diff) | |
download | rneovim-1f9dd689b9f2b68edbc40cc3c60d46db853dda94.tar.gz rneovim-1f9dd689b9f2b68edbc40cc3c60d46db853dda94.tar.bz2 rneovim-1f9dd689b9f2b68edbc40cc3c60d46db853dda94.zip |
Merge branch 'master' into hide-container-impl
Diffstat (limited to 'src/nvim/option.c')
-rw-r--r-- | src/nvim/option.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c index 37c4233142..f8a05f133d 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -75,6 +75,7 @@ #include "nvim/window.h" #include "nvim/os/os.h" #include "nvim/os/input.h" +#include "nvim/os/lang.h" /* * The options that are local to a window or buffer have "indir" set to one of @@ -784,6 +785,8 @@ void set_init_1(void) didset_options2(); + lang_init(); + // enc_locale() will try to find the encoding of the current locale. // This will be used when 'default' is used as encoding specifier // in 'fileencodings' |