summaryrefslogtreecommitdiffstats
path: root/src/charset.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-01-31 14:55:40 +0100
committerBram Moolenaar <Bram@vim.org>2016-01-31 14:55:40 +0100
commite2c3810c2ae290bbc2cba18eb47cc2d44e4b9797 (patch)
treed925e3d106d6ef1cc76cd5465f8971d8fac2db72 /src/charset.c
parent3c124e3ac81521ae1e7e4a9cb9597ab754b92429 (diff)
patch 7.4.1222v7.4.1222
Problem: ":normal" command and others missing in tiny build. Solution: Graduate FEAT_EX_EXTRA.
Diffstat (limited to 'src/charset.c')
-rw-r--r--src/charset.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/charset.c b/src/charset.c
index 538d82115a..2414b2a401 100644
--- a/src/charset.c
+++ b/src/charset.c
@@ -822,14 +822,11 @@ vim_strnsize(char_u *s, int len)
else \
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
#ifdef FEAT_LINEBREAK
static int
@@ -1568,7 +1565,6 @@ skiphex(char_u *q)
}
#endif
-#if defined(FEAT_EX_EXTRA) || defined(PROTO)
/*
* skip to bin digit (or NUL after the string)
*/
@@ -1607,7 +1603,6 @@ skiptohex(char_u *q)
++p;
return p;
}
-#endif
/*
* Variant of isdigit() that can handle characters > 0x100.