diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2023-06-22 04:09:14 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-22 04:09:14 -0700 |
commit | 2f17ef1fc4b96cf1106fd95ba090d34a2e4b977b (patch) | |
tree | 3c51771cc20d3206f1f1cf657ccb4cbb5ee4ecf1 /src/nvim/eval.c | |
parent | 4e6356559c8cd44dbcaa765d1f39e176064526ec (diff) | |
download | rneovim-2f17ef1fc4b96cf1106fd95ba090d34a2e4b977b.tar.gz rneovim-2f17ef1fc4b96cf1106fd95ba090d34a2e4b977b.tar.bz2 rneovim-2f17ef1fc4b96cf1106fd95ba090d34a2e4b977b.zip |
fix(messages): use "Vimscript" instead of "VimL" #24111
followup to #24109
fix #16150
Diffstat (limited to 'src/nvim/eval.c')
-rw-r--r-- | src/nvim/eval.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/nvim/eval.c b/src/nvim/eval.c index 771824af71..1c9fdef20d 100644 --- a/src/nvim/eval.c +++ b/src/nvim/eval.c @@ -5364,7 +5364,7 @@ theend: xfree(trans_name); } -/// Get the line number from VimL object +/// Get the line number from Vimscript object /// /// @note Unlike tv_get_lnum(), this one supports only "$" special string. /// @@ -5517,9 +5517,9 @@ void get_user_input(const typval_T *const argvars, typval_T *const rettv, const cmd_silent = cmd_silent_save; } -/// Builds a process argument vector from a VimL object (typval_T). +/// Builds a process argument vector from a Vimscript object (typval_T). /// -/// @param[in] cmd_tv VimL object +/// @param[in] cmd_tv Vimscript object /// @param[out] cmd Returns the command or executable name. /// @param[out] executable Returns `false` if argv[0] is not executable. /// @@ -6192,7 +6192,7 @@ int read_blob(FILE *const fd, typval_T *rettv, off_T offset, off_T size_arg) /// @param[out] len Length of the resulting string or -1 on error. /// @param[in] endnl If true, the output will end in a newline (if a list). /// @param[in] crlf If true, list items will be joined with CRLF (if a list). -/// @returns an allocated string if `tv` represents a VimL string, list, or +/// @returns an allocated string if `tv` represents a Vimscript string, list, or /// number; NULL otherwise. char *save_tv_as_string(typval_T *tv, ptrdiff_t *const len, bool endnl, bool crlf) FUNC_ATTR_MALLOC FUNC_ATTR_NONNULL_ALL @@ -6338,7 +6338,7 @@ int buf_charidx_to_byteidx(buf_T *buf, linenr_T lnum, int charidx) return (int)(t - str); } -/// Translate a VimL object into a position +/// Translate a Vimscript object into a position /// /// Accepts VAR_LIST and VAR_STRING objects. Does not give an error for invalid /// type. |