diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-05-28 07:09:55 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-06-04 02:09:27 +0200 |
commit | 4211255c755513aa91d4a9277b69b557fc6658ee (patch) | |
tree | cf2a45252abaa216787d1f5e891ad9177348447b /src/nvim/os/input.c | |
parent | 63058fb5b05a1293dd50851af46f33fc15110829 (diff) | |
download | rneovim-4211255c755513aa91d4a9277b69b557fc6658ee.tar.gz rneovim-4211255c755513aa91d4a9277b69b557fc6658ee.tar.bz2 rneovim-4211255c755513aa91d4a9277b69b557fc6658ee.zip |
startup: allow explicit "-" file arg with --headless
Diffstat (limited to 'src/nvim/os/input.c')
-rw-r--r-- | src/nvim/os/input.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/os/input.c b/src/nvim/os/input.c index a2d1a7bace..c999396a6a 100644 --- a/src/nvim/os/input.c +++ b/src/nvim/os/input.c @@ -109,7 +109,7 @@ int os_inchar(uint8_t *buf, int maxlen, int ms, int tb_change_cnt) } else { if ((result = inbuf_poll((int)p_ut)) == kInputNone) { if (read_stream.closed && silent_mode) { - // Input drained and eventloop drained: exit silent/batch-mode (-es). + // Drained input and eventloop: exit silent/batch-mode (-es/-Es). read_error_exit(); } |