diff options
author | James McCoy <jamessan@jamessan.com> | 2017-06-06 07:33:50 -0400 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2017-06-06 07:33:50 -0400 |
commit | 9281653233dbf7a365370883d35062fe940d7926 (patch) | |
tree | 67bead0497d5a127b953e43c5fd55d6fbf4d098f /src/nvim/ex_getln.c | |
parent | b3129b37917f54eb056033a41d1acbb920a5b93b (diff) | |
parent | cb0abce5be1dd6212425589b61826332834dc977 (diff) | |
download | rneovim-9281653233dbf7a365370883d35062fe940d7926.tar.gz rneovim-9281653233dbf7a365370883d35062fe940d7926.tar.bz2 rneovim-9281653233dbf7a365370883d35062fe940d7926.zip |
Merge remote-tracking branch 'origin/master' into vim-7.4.1975
Diffstat (limited to 'src/nvim/ex_getln.c')
-rw-r--r-- | src/nvim/ex_getln.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/nvim/ex_getln.c b/src/nvim/ex_getln.c index b27d778140..858374c68e 100644 --- a/src/nvim/ex_getln.c +++ b/src/nvim/ex_getln.c @@ -4174,10 +4174,8 @@ static void expand_shellcmd(char_u *filepat, int *num_file, char_u ***file, } } -/* - * Call "user_expand_func()" to invoke a user defined VimL function and return - * the result (either a string or a List). - */ +/// Call "user_expand_func()" to invoke a user defined Vim script function and +/// return the result (either a string or a List). static void * call_user_expand_func(user_expand_func_T user_expand_func, expand_T *xp, int *num_file, char_u ***file) { |