diff options
Diffstat (limited to 'src/nvim/charset.c')
-rw-r--r-- | src/nvim/charset.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/nvim/charset.c b/src/nvim/charset.c index 1c979365bf..26ae17510a 100644 --- a/src/nvim/charset.c +++ b/src/nvim/charset.c @@ -20,12 +20,11 @@ #include "nvim/os_unix.h" #include "nvim/strings.h" -static int win_chartabsize(win_T *wp, char_u *p, colnr_T col); -static int win_nolbr_chartabsize(win_T *wp, char_u *s, colnr_T col, - int *headp); +#ifdef INCLUDE_GENERATED_DECLARATIONS +# include "charset.c.generated.h" +#endif -static unsigned nr2hex(unsigned c); static int chartab_initialized = FALSE; |