From f6968dc0f7775591108aebbfe30e597dd0882c91 Mon Sep 17 00:00:00 2001 From: Björn Linse Date: Wed, 13 Apr 2016 16:37:09 +0200 Subject: api: call multiple methods atomically (useful in async contexts) remove unused response_id parameter of handle_nvim_... helpers --- src/nvim/api/private/defs.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/nvim/api/private/defs.h') diff --git a/src/nvim/api/private/defs.h b/src/nvim/api/private/defs.h index a6710193ff..1d5ecd3071 100644 --- a/src/nvim/api/private/defs.h +++ b/src/nvim/api/private/defs.h @@ -33,8 +33,8 @@ typedef enum { /// Used as the message ID of notifications. #define NO_RESPONSE UINT64_MAX -/// Used as channel_id when the call is local -#define INVALID_CHANNEL UINT64_MAX +/// Used as channel_id when the call is local. +#define INTERNAL_CALL UINT64_MAX typedef struct { ErrorType type; -- cgit