From d00ef758c3a644759064565cdc7fc219ece0df3a Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Thu, 24 May 2018 11:51:35 +0200 Subject: lint --- src/nvim/event/rstream.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/event') 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, -- cgit