comparison src/structs.h @ 22827:20ccf5f7dc6d v8.2.1961

patch 8.2.1961: various comments can be improved Commit: https://github.com/vim/vim/commit/22286895fce0e45e42126c7f2e35ebf43bc625d9 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Nov 5 20:50:51 2020 +0100 patch 8.2.1961: various comments can be improved Problem: Various comments can be improved. Solution: Various comment adjustments.
author Bram Moolenaar <Bram@vim.org>
date Thu, 05 Nov 2020 21:00:05 +0100
parents 92a100fc5e17
children 80bd5de5dcab
comparison
equal deleted inserted replaced
22826:4d437e6f0be7 22827:20ccf5f7dc6d
1686 int dbg_tick; // debug_tick when breakpoint was set 1686 int dbg_tick; // debug_tick when breakpoint was set
1687 int level; // top nesting level of executed function 1687 int level; // top nesting level of executed function
1688 #ifdef FEAT_PROFILE 1688 #ifdef FEAT_PROFILE
1689 proftime_T prof_child; // time spent in a child 1689 proftime_T prof_child; // time spent in a child
1690 #endif 1690 #endif
1691 funccall_T *caller; // calling function or NULL 1691 funccall_T *caller; // calling function or NULL; or next funccal in
1692 // list pointed to by previous_funccal.
1692 1693
1693 // for closure 1694 // for closure
1694 int fc_refcount; // number of user functions that reference this 1695 int fc_refcount; // number of user functions that reference this
1695 // funccal 1696 // funccal
1696 int fc_copyID; // for garbage collection 1697 int fc_copyID; // for garbage collection