summaryrefslogtreecommitdiffstats
path: root/src/message.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-11-30 20:20:56 +0000
committerBram Moolenaar <Bram@vim.org>2022-11-30 20:20:56 +0000
commit3b8c7083b265c35861a7f96b01c079471ff45152 (patch)
tree71d5b80407f912d39de8532da6f6d817bc2e8d11 /src/message.c
parent4c5678ff0c376661d4a8183a5a074a1203413b9d (diff)
patch 9.0.0978: build errors without the +channel featurev9.0.0978
Problem: Build errors without the +channel feature. (John Marriott) Solution: Adjust #ifdefs.
Diffstat (limited to 'src/message.c')
-rw-r--r--src/message.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/message.c b/src/message.c
index a2fc008c2e..591691f3f6 100644
--- a/src/message.c
+++ b/src/message.c
@@ -37,7 +37,7 @@ static char_u *confirm_msg = NULL; // ":confirm" message
static char_u *confirm_msg_tail; // tail of confirm_msg
static void display_confirm_msg(void);
#endif
-#ifdef FEAT_JOB_CHANNEL
+#ifdef FEAT_EVAL
static int emsg_to_channel_log = FALSE;
#endif