mirror of
https://github.com/neovim/neovim.git
synced 2025-10-16 14:56:08 +00:00

Problem: Language and locale code spread out.
Solution: Move relevant code to src/locale.c. (Yegappan Lakshmanan,
closes vim/vim#6509)
054f14bbe5
Also remove redundant <locale.h> includes.
11 lines
204 B
C
11 lines
204 B
C
#ifndef NVIM_LOCALE_H
|
|
#define NVIM_LOCALE_H
|
|
|
|
#include "nvim/ex_cmds_defs.h"
|
|
#include "nvim/types.h"
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "locale.h.generated.h"
|
|
#endif
|
|
#endif // NVIM_LOCALE_H
|