aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ex_getln.c
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2017-06-05 23:05:28 -0400
committerJames McCoy <jamessan@jamessan.com>2017-06-06 06:15:16 -0400
commitcb8efa4fefd845e6cf42c9d14384bd291327cfe8 (patch)
treed0d3c2b135b6d7c1e3408e91e8e1a1cc0ed95b90 /src/nvim/ex_getln.c
parent0088ed0f1a73dcf85ce35733f2f6b2c1e84dcfef (diff)
downloadrneovim-cb8efa4fefd845e6cf42c9d14384bd291327cfe8.tar.gz
rneovim-cb8efa4fefd845e6cf42c9d14384bd291327cfe8.tar.bz2
rneovim-cb8efa4fefd845e6cf42c9d14384bd291327cfe8.zip
vim-patch:8.0.0360
Problem: Sometimes VimL is used, which is confusing. Solution: Consistently use "Vim script". (Hirohito Higashi) https://github.com/vim/vim/commit/b544f3c81f1e6a50322855681ac266ffaa8e313c
Diffstat (limited to 'src/nvim/ex_getln.c')
-rw-r--r--src/nvim/ex_getln.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/nvim/ex_getln.c b/src/nvim/ex_getln.c
index 2b4997928e..36b6bac9c3 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)
{