Remove FEAT_EX_EXTRA

Vim's extra Ex commands: :center, :left, :normal, :retab and :right
This commit is contained in:
Hinidu
2014-04-12 00:00:49 +03:00
committed by Justin M. Keyes
parent a29b94e2f9
commit 0b4d990adf
2 changed files with 0 additions and 9 deletions

View File

@@ -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)