diff options
author | Marco Hinz <mh.codebro@gmail.com> | 2015-04-10 15:22:46 +0200 |
---|---|---|
committer | Marco Hinz <mh.codebro@gmail.com> | 2015-04-11 18:32:18 +0200 |
commit | 0e65962a6838ef36f8c518f067e753cbf40a87e5 (patch) | |
tree | 13828f1133ac5f2d723894ca82bd3ef0cefb539b /src/nvim/terminal.c | |
parent | 8171fc4cbc9cfe368bca7a7e711e198b976bf4f7 (diff) | |
download | rneovim-0e65962a6838ef36f8c518f067e753cbf40a87e5.tar.gz rneovim-0e65962a6838ef36f8c518f067e753cbf40a87e5.tar.bz2 rneovim-0e65962a6838ef36f8c518f067e753cbf40a87e5.zip |
Remove all references to JobActivity
The JobActivity event got replaced by callback functions provided to
jobstart() or termopen().
It got removed here:
https://github.com/neovim/neovim/commit/6e7757ad51dfe3b2de857ff8a8688718ff6115ac
Diffstat (limited to 'src/nvim/terminal.c')
-rw-r--r-- | src/nvim/terminal.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/nvim/terminal.c b/src/nvim/terminal.c index 7242abaa45..b4a6850e00 100644 --- a/src/nvim/terminal.c +++ b/src/nvim/terminal.c @@ -894,8 +894,7 @@ static void on_refresh(Event event) } Terminal *term; void *stub; (void)(stub); - // dont process autocommands while updating terminal buffers. JobActivity can - // be used act on terminal output. + // don't process autocommands while updating terminal buffers block_autocmds(); map_foreach(invalidated_terminals, term, stub, { // TODO(SplinterOfChaos): Find the condition that makes term->buf invalid. |