aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/api/private/handle.h
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2016-06-11 12:14:58 -0400
committerGitHub <noreply@github.com>2016-06-11 12:14:58 -0400
commitf0c1a06792586d8373639ad2e9d34de6594cece3 (patch)
tree6612b88611deb097cabe19c0cfec48273a696423 /src/nvim/api/private/handle.h
parent290215364898fbd3a660be6c0642377c47398619 (diff)
parent244967bff918cbde43eea823c1bf0fa86d566623 (diff)
downloadrneovim-f0c1a06792586d8373639ad2e9d34de6594cece3.tar.gz
rneovim-f0c1a06792586d8373639ad2e9d34de6594cece3.tar.bz2
rneovim-f0c1a06792586d8373639ad2e9d34de6594cece3.zip
Merge #4908 from ZyX-I/clint-checks-2
Add more clint checks
Diffstat (limited to 'src/nvim/api/private/handle.h')
-rw-r--r--src/nvim/api/private/handle.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/api/private/handle.h b/src/nvim/api/private/handle.h
index 1a196f6797..804e266dc3 100644
--- a/src/nvim/api/private/handle.h
+++ b/src/nvim/api/private/handle.h
@@ -4,9 +4,9 @@
#include "nvim/vim.h"
#include "nvim/buffer_defs.h"
-#define HANDLE_DECLS(type, name) \
- type *handle_get_##name(uint64_t handle); \
- void handle_register_##name(type *name); \
+#define HANDLE_DECLS(type, name) \
+ type *handle_get_##name(uint64_t handle); \
+ void handle_register_##name(type *name); \
void handle_unregister_##name(type *name);
HANDLE_DECLS(buf_T, buffer)