aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/event/process.h
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2020-06-10 13:24:45 -0400
committerGitHub <noreply@github.com>2020-06-10 13:24:45 -0400
commitdcd6cf5f3409f5fdab03bc82887efea02a597f3b (patch)
treed65d1445fcf8befb2ea556b180bd3d05019f7bc1 /src/nvim/event/process.h
parentd8c5d122f1ba95bc71a78c5d70465bfa88623bd7 (diff)
parentd17e38e48209c19b63d809c5b807613f15aa03c8 (diff)
downloadrneovim-dcd6cf5f3409f5fdab03bc82887efea02a597f3b.tar.gz
rneovim-dcd6cf5f3409f5fdab03bc82887efea02a597f3b.tar.bz2
rneovim-dcd6cf5f3409f5fdab03bc82887efea02a597f3b.zip
Merge pull request #11819 from erw7/fix-dot-net-stdin
[RDY] win: make UV_OVERLAPPED_PIPE optional
Diffstat (limited to 'src/nvim/event/process.h')
-rw-r--r--src/nvim/event/process.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/event/process.h b/src/nvim/event/process.h
index b677b80bfe..84e81238e9 100644
--- a/src/nvim/event/process.h
+++ b/src/nvim/event/process.h
@@ -27,7 +27,7 @@ struct process {
Stream in, out, err;
process_exit_cb cb;
internal_process_cb internal_exit_cb, internal_close_cb;
- bool closed, detach;
+ bool closed, detach, overlapped;
MultiQueue *events;
};