aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/eval.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2019-12-02 22:38:36 -0800
committerGitHub <noreply@github.com>2019-12-02 22:38:36 -0800
commitb1e4ec1c2a08981683b2355715a421c0bfb64644 (patch)
tree4b19d5f14230929c226ea916c1538fb492e511c0 /src/nvim/eval.c
parent22b52dd462e5dc9d5429305215bfb20aa20517c5 (diff)
parenta3b6c2a3dc5576db45fe4e893cfb8482af591c92 (diff)
downloadrneovim-b1e4ec1c2a08981683b2355715a421c0bfb64644.tar.gz
rneovim-b1e4ec1c2a08981683b2355715a421c0bfb64644.tar.bz2
rneovim-b1e4ec1c2a08981683b2355715a421c0bfb64644.zip
Merge #11500 from justinmk/api-deprecate
API: rename nvim_execute_lua, deprecate nvim_command_output
Diffstat (limited to 'src/nvim/eval.c')
-rw-r--r--src/nvim/eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/eval.c b/src/nvim/eval.c
index 1ab25b33b2..e99c41a915 100644
--- a/src/nvim/eval.c
+++ b/src/nvim/eval.c
@@ -20527,7 +20527,7 @@ static hashtab_T *get_funccal_local_ht(void)
return &get_funccal()->l_vars.dv_hashtab;
}
-/// Find the dict and hashtable used for a variable
+/// Finds the dict (g:, l:, s:, …) and hashtable used for a variable.
///
/// @param[in] name Variable name, possibly with scope prefix.
/// @param[in] name_len Variable name length.