diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-02-23 19:03:28 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-02-23 19:03:28 +0100 |
commit | b544f3c81f1e6a50322855681ac266ffaa8e313c (patch) | |
tree | 65ae4057660ce5f73ad2b3e68fe4645570702b4d /src/eval.c | |
parent | dc9a081712ec8c140e6d4909e9f6b03a629d32d3 (diff) | |
download | vim-git-b544f3c81f1e6a50322855681ac266ffaa8e313c.tar.gz |
patch 8.0.0360: sometimes VimL is used instead of "Vim script"v8.0.0360
Problem: Sometimes VimL is used, which is confusing.
Solution: Consistently use "Vim script". (Hirohito Higashi)
Diffstat (limited to 'src/eval.c')
-rw-r--r-- | src/eval.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/eval.c b/src/eval.c index 725e540b9..4fc9f743e 100644 --- a/src/eval.c +++ b/src/eval.c @@ -950,7 +950,7 @@ eval_expr(char_u *arg, char_u **nextcmd) /* - * Call some vimL function and return the result in "*rettv". + * Call some Vim script function and return the result in "*rettv". * Uses argv[argc] for the function arguments. Only Number and String * arguments are currently supported. * Returns OK or FAIL. @@ -1027,7 +1027,7 @@ call_vim_function( } /* - * Call vimL function "func" and return the result as a number. + * Call Vim script function "func" and return the result as a number. * Returns -1 when calling the function fails. * Uses argv[argc] for the function arguments. */ @@ -1055,7 +1055,7 @@ call_func_retnr( # if (defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)) || defined(PROTO) /* - * Call vimL function "func" and return the result as a string. + * Call Vim script function "func" and return the result as a string. * Returns NULL when calling the function fails. * Uses argv[argc] for the function arguments. */ @@ -1080,7 +1080,7 @@ call_func_retstr( # endif /* - * Call vimL function "func" and return the result as a List. + * Call Vim script function "func" and return the result as a List. * Uses argv[argc] for the function arguments. * Returns NULL when there is something wrong. */ |