aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/eval.c
diff options
context:
space:
mode:
authorbfredl <bjorn.linse@gmail.com>2023-02-27 19:37:43 +0100
committerBjörn Linse <bjorn.linse@gmail.com>2023-03-03 14:19:46 +0100
commit1b3c1f6c06d73e881bfc2a46e5ee3e0b24ba96d8 (patch)
tree43133b9b21805464d613280b3d1222da7125ff31 /src/nvim/eval.c
parent166b149d5b473f277c63e64ced03c40df44ac3c9 (diff)
downloadrneovim-1b3c1f6c06d73e881bfc2a46e5ee3e0b24ba96d8.tar.gz
rneovim-1b3c1f6c06d73e881bfc2a46e5ee3e0b24ba96d8.tar.bz2
rneovim-1b3c1f6c06d73e881bfc2a46e5ee3e0b24ba96d8.zip
refactor(build): graduate HAVE_LOCALE_H feature
Merge locale.h into os/lang.h Having a source file with the same name as a system header we use is considered an anti-pattern.
Diffstat (limited to 'src/nvim/eval.c')
-rw-r--r--src/nvim/eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/eval.c b/src/nvim/eval.c
index 0fbf31a8cd..da2a88346a 100644
--- a/src/nvim/eval.c
+++ b/src/nvim/eval.c
@@ -45,7 +45,6 @@
#include "nvim/insexpand.h"
#include "nvim/keycodes.h"
#include "nvim/lib/queue.h"
-#include "nvim/locale.h"
#include "nvim/lua/executor.h"
#include "nvim/macros.h"
#include "nvim/main.h"
@@ -62,6 +61,7 @@
#include "nvim/optionstr.h"
#include "nvim/os/fileio.h"
#include "nvim/os/fs_defs.h"
+#include "nvim/os/lang.h"
#include "nvim/os/os.h"
#include "nvim/os/shell.h"
#include "nvim/os/stdpaths_defs.h"