diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2019-06-09 16:20:09 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-06-09 16:20:09 +0200 |
| commit | b397a3f397c36e0f3b9c9deba9bb051835df8f77 (patch) | |
| tree | bfd5ee44d7d4a7f4fb19a202ce73da0d72904c2f /src/nvim/eval | |
| parent | b74da2ff3e2d39eef848355edabefbce28972ecd (diff) | |
| parent | 7d70166e770fa93b66f950aa8128175b0d8757a7 (diff) | |
| download | rneovim-b397a3f397c36e0f3b9c9deba9bb051835df8f77.tar.gz rneovim-b397a3f397c36e0f3b9c9deba9bb051835df8f77.tar.bz2 rneovim-b397a3f397c36e0f3b9c9deba9bb051835df8f77.zip | |
Merge #10142 from blueyed/vim-1fbfe7c48
vim-patch:8.1.013{0,1}
Diffstat (limited to 'src/nvim/eval')
| -rw-r--r-- | src/nvim/eval/typval.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/eval/typval.h b/src/nvim/eval/typval.h index e99289c430..5c0f872b38 100644 --- a/src/nvim/eval/typval.h +++ b/src/nvim/eval/typval.h @@ -260,6 +260,7 @@ struct ufunc { garray_T uf_args; ///< arguments garray_T uf_lines; ///< function lines int uf_profiling; ///< true when func is being profiled + int uf_prof_initialized; // Profiling the function as a whole. int uf_tm_count; ///< nr of calls proftime_T uf_tm_total; ///< time spent in function + children |