diff options
author | Pavel Platto <hinidu@gmail.com> | 2014-04-16 09:21:19 +0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-04-20 10:37:52 -0300 |
commit | aea2e2cb126bf92e729b88013fd03b55ee4b3399 (patch) | |
tree | 581420b130e9896eff3d8dc0d4ec4d9aa74ae183 /src/os_unix.c | |
parent | a848fad656505c44983b606d7b484869b33dac56 (diff) | |
download | rneovim-aea2e2cb126bf92e729b88013fd03b55ee4b3399.tar.gz rneovim-aea2e2cb126bf92e729b88013fd03b55ee4b3399.tar.bz2 rneovim-aea2e2cb126bf92e729b88013fd03b55ee4b3399.zip |
Removed mch_input_isatty
Diffstat (limited to 'src/os_unix.c')
-rw-r--r-- | src/os_unix.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/os_unix.c b/src/os_unix.c index 6743b1a993..4a32d77d8c 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -182,16 +182,6 @@ void mch_init() event_init(); } -/* - * Return TRUE if the input comes from a terminal, FALSE otherwise. - */ -int mch_input_isatty() -{ - if (isatty(read_cmd_fd)) - return TRUE; - return FALSE; -} - static int get_x11_title(int test_only) { return FALSE; |