From 0b4d990adfd39ea20267e83135fd206a57cd6a8d Mon Sep 17 00:00:00 2001 From: Hinidu Date: Sat, 12 Apr 2014 00:00:49 +0300 Subject: Remove FEAT_EX_EXTRA Vim's extra Ex commands: :center, :left, :normal, :retab and :right --- src/nvim/charset.c | 8 -------- 1 file changed, 8 deletions(-) (limited to 'src') 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) -- cgit