diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2019-06-23 20:38:41 +0200 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2019-06-30 11:33:01 +0200 |
commit | 7030d7daf1f40e5a3963340d1107d7b7a713df5f (patch) | |
tree | 81180bef71ec397ba7f089b9af485dbc03a8321e /src/nvim/func_attr.h | |
parent | 0480e991d2180025ef040629c5dcd0a193055a2e (diff) | |
download | rneovim-7030d7daf1f40e5a3963340d1107d7b7a713df5f.tar.gz rneovim-7030d7daf1f40e5a3963340d1107d7b7a713df5f.tar.bz2 rneovim-7030d7daf1f40e5a3963340d1107d7b7a713df5f.zip |
rename: FUNC_API_ASYNC => FUNC_API_FAST
Diffstat (limited to 'src/nvim/func_attr.h')
-rw-r--r-- | src/nvim/func_attr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/func_attr.h b/src/nvim/func_attr.h index d3b600a40c..14b8158c7f 100644 --- a/src/nvim/func_attr.h +++ b/src/nvim/func_attr.h @@ -205,8 +205,8 @@ #endif #ifdef DEFINE_FUNC_ATTRIBUTES -/// Non-deferred API function. -# define FUNC_API_ASYNC +/// Fast (non-deferred) API function. +# define FUNC_API_FAST /// Internal C function not exposed in the RPC API. # define FUNC_API_NOEXPORT /// API function not exposed in VimL/eval. |