diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2015-05-25 14:31:12 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-05-27 09:34:05 -0400 |
commit | b2c400b3f2354b2765e1d6f3b5ce4b11f2ab75a3 (patch) | |
tree | 5647ea22f1e7fd35b56df9893ebfd5717481d857 /src/nvim/os/event.c | |
parent | 4219b69145f13e95eadb5a666cb02b482bdd395b (diff) | |
download | rneovim-b2c400b3f2354b2765e1d6f3b5ce4b11f2ab75a3.tar.gz rneovim-b2c400b3f2354b2765e1d6f3b5ce4b11f2ab75a3.tar.bz2 rneovim-b2c400b3f2354b2765e1d6f3b5ce4b11f2ab75a3.zip |
input: rename input_{start,stop}_stdin()
- "stdin" is misleading because it may read from stdout or stderr
- also remove some unused includes
Diffstat (limited to 'src/nvim/os/event.c')
-rw-r--r-- | src/nvim/os/event.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/os/event.c b/src/nvim/os/event.c index 0560da1e2e..b0bd7ca55a 100644 --- a/src/nvim/os/event.c +++ b/src/nvim/os/event.c @@ -73,7 +73,7 @@ void event_teardown(void) // is required because the `process_events_from` above may call `event_push` // which will set the stop_flag to 1(uv_stop) uv_default_loop()->stop_flag = 0; - input_stop_stdin(); + input_stop(); channel_teardown(); job_teardown(); server_teardown(); |