aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHinidu <hinidu@gmail.com>2014-04-12 00:00:49 +0300
committerJustin M. Keyes <justinkz@gmail.com>2014-05-28 13:08:54 -0400
commit0b4d990adfd39ea20267e83135fd206a57cd6a8d (patch)
tree464425000ac59b5c545224c4bd6df74637d2021e /src
parenta29b94e2f95d06abd294c454adba819de079d2d2 (diff)
downloadrneovim-0b4d990adfd39ea20267e83135fd206a57cd6a8d.tar.gz
rneovim-0b4d990adfd39ea20267e83135fd206a57cd6a8d.tar.bz2
rneovim-0b4d990adfd39ea20267e83135fd206a57cd6a8d.zip
Remove FEAT_EX_EXTRA
Vim's extra Ex commands: :center, :left, :normal, :retab and :right
Diffstat (limited to 'src')
-rw-r--r--src/nvim/charset.c8
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)