diff options
Diffstat (limited to 'src/nvim/event/rstream.c')
-rw-r--r-- | src/nvim/event/rstream.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/event/rstream.c b/src/nvim/event/rstream.c index 2fbe7f6773..6812b342bf 100644 --- a/src/nvim/event/rstream.c +++ b/src/nvim/event/rstream.c @@ -115,7 +115,7 @@ static void read_cb(uv_stream_t *uvstream, ssize_t cnt, const uv_buf_t *buf) if (cnt == UV_ENOBUFS || cnt == 0) { return; } else if (cnt == UV_EOF && uvstream->type == UV_TTY) { - // The TTY driver might signal TTY without closing the stream + // The TTY driver might signal EOF without closing the stream invoke_read_cb(stream, 0, true); } else { DLOG("Closing Stream (%p): %s (%s)", stream, |