diff options
author | Hinidu <hinidu@gmail.com> | 2014-04-11 23:35:27 +0300 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-05-28 13:08:54 -0400 |
commit | cfea68db8e4c515402e3898e74413af033e3e59f (patch) | |
tree | d6d1e0e7ee3fdf6cf705efce07d9e0406cf8ad76 /src | |
parent | 8fb4c551f477cdb84ae288a562993e1f50fa0411 (diff) | |
download | rneovim-cfea68db8e4c515402e3898e74413af033e3e59f.tar.gz rneovim-cfea68db8e4c515402e3898e74413af033e3e59f.tar.bz2 rneovim-cfea68db8e4c515402e3898e74413af033e3e59f.zip |
Remove FEAT_COMPL_FUNC
Insert mode completion with 'completefunc'
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/eval.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/nvim/eval.c b/src/nvim/eval.c index fdd74a069b..87261d4368 100644 --- a/src/nvim/eval.c +++ b/src/nvim/eval.c @@ -1554,8 +1554,6 @@ call_func_retnr ( return retval; } -#if defined(FEAT_USR_CMDS) || defined(FEAT_COMPL_FUNC) || defined(PROTO) - /* * Call vimL function "func" and return the result as a string. * Returns NULL when calling the function fails. @@ -1607,7 +1605,6 @@ call_func_retlist ( return rettv.vval.v_list; } -#endif /* * Save the current function call pointer, and set it to NULL. |