diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-03-09 19:44:26 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-09 19:44:26 -0500 |
commit | cc23c95bccda06c9bbcadd919f4fb2f2545f1151 (patch) | |
tree | 5eb6745f2bd2723e1cca4f6f0d18d494c309aac9 /src/nvim/eval/typval.h | |
parent | e355cc8cc5c131e6df429107f321dd4a80c05065 (diff) | |
parent | 7da8056607331f12b912b4a7c65592ac317c2ff4 (diff) | |
download | rneovim-cc23c95bccda06c9bbcadd919f4fb2f2545f1151.tar.gz rneovim-cc23c95bccda06c9bbcadd919f4fb2f2545f1151.tar.bz2 rneovim-cc23c95bccda06c9bbcadd919f4fb2f2545f1151.zip |
Merge pull request #14088 from janlazo/vim-8.2.2577
vim-patch:8.1.0783,8.2.{1507,2152,2438,2577}
Diffstat (limited to 'src/nvim/eval/typval.h')
-rw-r--r-- | src/nvim/eval/typval.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/nvim/eval/typval.h b/src/nvim/eval/typval.h index 6fcb01aace..531b17cb59 100644 --- a/src/nvim/eval/typval.h +++ b/src/nvim/eval/typval.h @@ -341,8 +341,9 @@ struct ufunc { ///< used for s: variables int uf_refcount; ///< reference count, see func_name_refcount() funccall_T *uf_scoped; ///< l: local variables for closure - char_u uf_name[]; ///< Name of function; can start with <SNR>123_ - ///< (<SNR> is K_SPECIAL KS_EXTRA KE_SNR) + char_u uf_name[]; ///< Name of function (actual size equals name); + ///< can start with <SNR>123_ + ///< (<SNR> is K_SPECIAL KS_EXTRA KE_SNR) }; struct partial_S { |