diff options
-rw-r--r-- | config/config.h.in | 1 | ||||
-rw-r--r-- | src/nvim/charset.c | 8 |
2 files changed, 0 insertions, 9 deletions
diff --git a/config/config.h.in b/config/config.h.in index 3b943983c3..1da78cb72e 100644 --- a/config/config.h.in +++ b/config/config.h.in @@ -107,7 +107,6 @@ #define FEAT_CONCEAL #define FEAT_CSCOPE #define FEAT_DIGRAPHS -#define FEAT_EX_EXTRA #define FEAT_FIND_ID #define FEAT_FKMAP #define FEAT_FLOAT diff --git a/src/nvim/charset.c b/src/nvim/charset.c index c37263c040..1c979365bf 100644 --- a/src/nvim/charset.c +++ b/src/nvim/charset.c @@ -748,19 +748,11 @@ int vim_strnsize(char_u *s, int len) return ptr2cells(p); \ } -#if defined(FEAT_VREPLACE) \ - || defined(FEAT_EX_EXTRA) \ - || defined(FEAT_GUI) \ - || defined(FEAT_VIRTUALEDIT) \ - || defined(PROTO) int chartabsize(char_u *p, colnr_T col) { RET_WIN_BUF_CHARTABSIZE(curwin, curbuf, p, col) } -#endif /* if defined(FEAT_VREPLACE) || defined(FEAT_EX_EXTRA) || - defined(FEAT_GUI) || defined(FEAT_VIRTUALEDIT) || defined(PROTO) */ - static int win_chartabsize(win_T *wp, char_u *p, colnr_T col) { RET_WIN_BUF_CHARTABSIZE(wp, wp->w_buffer, p, col) |