diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-02-21 19:14:41 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-02-21 19:14:41 +0100 |
commit | ee1cffc07a42441924c5353af7fd7ab6e97e5aae (patch) | |
tree | f3d7bf205c1d93a2844352237ced27046d468a60 /src/macros.h | |
parent | b7522a2f0ca6c970df37241c9e70024465d8596b (diff) | |
download | vim-ee1cffc07a42441924c5353af7fd7ab6e97e5aae.zip |
patch 7.4.1380
Problem: The job exit callback is not implemented.
Solution: Add the "exit-cb" option.
Diffstat (limited to 'src/macros.h')
-rw-r--r-- | src/macros.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/macros.h b/src/macros.h index ec0cdc3f9..012def6ae 100644 --- a/src/macros.h +++ b/src/macros.h @@ -317,6 +317,6 @@ # define PLINES_NOFILL(x) plines(x) #endif -#if defined(FEAT_CHANNEL) || defined(FEAT_CLIENTSERVER) +#if defined(FEAT_CHANNEL) || defined(FEAT_JOB) || defined(FEAT_CLIENTSERVER) # define MESSAGE_QUEUE #endif |