diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-11-05 21:29:02 -0500 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-11-06 20:03:05 -0500 |
commit | 038e98fd7de10f5442a11eb5d54c39d145559d79 (patch) | |
tree | a42ff47bceb77e172d02e66ca42e54eeb45e0547 /src/nvim/eval/typval.h | |
parent | 0522962f1529109ee021949ee105ab03ae934bc5 (diff) | |
download | rneovim-038e98fd7de10f5442a11eb5d54c39d145559d79.tar.gz rneovim-038e98fd7de10f5442a11eb5d54c39d145559d79.tar.bz2 rneovim-038e98fd7de10f5442a11eb5d54c39d145559d79.zip |
vim-patch:8.2.1961: various comments can be improved
Problem: Various comments can be improved.
Solution: Various comment adjustments.
https://github.com/vim/vim/commit/22286895fce0e45e42126c7f2e35ebf43bc625d9
Diffstat (limited to 'src/nvim/eval/typval.h')
-rw-r--r-- | src/nvim/eval/typval.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/eval/typval.h b/src/nvim/eval/typval.h index 503a32a81e..1e3e9bd366 100644 --- a/src/nvim/eval/typval.h +++ b/src/nvim/eval/typval.h @@ -301,7 +301,8 @@ struct funccall_S { int dbg_tick; ///< Debug_tick when breakpoint was set. int level; ///< Top nesting level of executed function. proftime_T prof_child; ///< Time spent in a child. - funccall_T *caller; ///< Calling function or NULL. + funccall_T *caller; ///< Calling function or NULL; or next funccal in + ///< list pointed to by previous_funccal. int fc_refcount; ///< Number of user functions that reference this funccall. int fc_copyID; ///< CopyID used for garbage collection. garray_T fc_funcs; ///< List of ufunc_T* which keep a reference to "func". |