diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-01-31 14:55:40 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-01-31 14:55:40 +0100 |
commit | e2c3810c2ae290bbc2cba18eb47cc2d44e4b9797 (patch) | |
tree | d925e3d106d6ef1cc76cd5465f8971d8fac2db72 /src/charset.c | |
parent | 3c124e3ac81521ae1e7e4a9cb9597ab754b92429 (diff) | |
download | vim-git-e2c3810c2ae290bbc2cba18eb47cc2d44e4b9797.tar.gz |
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.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/charset.c b/src/charset.c index 538d82115..2414b2a40 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. |