diff options
Diffstat (limited to 'src/nvim/func_attr.h')
-rw-r--r-- | src/nvim/func_attr.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/func_attr.h b/src/nvim/func_attr.h index d638fda531..43af880767 100644 --- a/src/nvim/func_attr.h +++ b/src/nvim/func_attr.h @@ -212,6 +212,8 @@ #if defined(DEFINE_FUNC_ATTRIBUTES) || defined(DEFINE_EMPTY_ATTRIBUTES) /// Fast (non-deferred) API function. # define FUNC_API_FAST +/// Return value needs to be freed +# define FUNC_API_RET_ALLOC /// Internal C function not exposed in the RPC API. # define FUNC_API_NOEXPORT /// API function not exposed in Vimscript/eval. |