diff options
author | Matthieu Coudron <mattator@gmail.com> | 2020-05-25 14:01:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-25 14:01:36 +0200 |
commit | 8c588246a505e4fcd3d28e6d1f670e834c918529 (patch) | |
tree | b1ffbf9bc47870e4b86b37b14e9d638158e0014e /src/nvim/eval/userfunc.h | |
parent | b996205969d5c56e9110158e48cef559e9de0969 (diff) | |
parent | a532fb2cf425ef15dbbbee6dd00d1401c90aebae (diff) | |
download | rneovim-8c588246a505e4fcd3d28e6d1f670e834c918529.tar.gz rneovim-8c588246a505e4fcd3d28e6d1f670e834c918529.tar.bz2 rneovim-8c588246a505e4fcd3d28e6d1f670e834c918529.zip |
Merge pull request #10905 from erw7/vim-8.1.0475
vim-patch:8.1.{475,800,868,1007,1027,1031,1033,1037,1058,1435,1484,1485}
Diffstat (limited to 'src/nvim/eval/userfunc.h')
-rw-r--r-- | src/nvim/eval/userfunc.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/nvim/eval/userfunc.h b/src/nvim/eval/userfunc.h index ad8e071548..e8ad0bf1da 100644 --- a/src/nvim/eval/userfunc.h +++ b/src/nvim/eval/userfunc.h @@ -11,6 +11,12 @@ typedef struct { dictitem_T *fd_di; ///< Dictionary item used. } funcdict_T; +typedef struct funccal_entry funccal_entry_T; +struct funccal_entry { + void *top_funccal; + funccal_entry_T *next; +}; + /// errors for when calling a function typedef enum { ERROR_UNKNOWN = 0, |