diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/charset.c | 8 |
1 files changed, 0 insertions, 8 deletions
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) |