commit | ee1cffc07a42441924c5353af7fd7ab6e97e5aae | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sun Feb 21 19:14:41 2016 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Sun Feb 21 19:14:41 2016 +0100 |
tree | f3d7bf205c1d93a2844352237ced27046d468a60 | |
parent | b7522a2f0ca6c970df37241c9e70024465d8596b [diff] [blame] |
patch 7.4.1380 Problem: The job exit callback is not implemented. Solution: Add the "exit-cb" option.
diff --git a/src/misc2.c b/src/misc2.c index 932d67e..7665d29 100644 --- a/src/misc2.c +++ b/src/misc2.c
@@ -6256,5 +6256,9 @@ /* Process the queued clientserver messages. */ server_parse_messages(); # endif +# ifdef FEAT_JOB + /* Check if any jobs have ended. */ + job_check_ended(); +# endif } #endif