diff options
author | Pavel Platto <hinidu@gmail.com> | 2014-04-16 09:00:41 +0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-04-20 10:37:52 -0300 |
commit | a848fad656505c44983b606d7b484869b33dac56 (patch) | |
tree | 0ed8b834e6b6e2b55ea1a2b4875be167a1c77f43 /src/os_unix.c | |
parent | 096eadbcbb224e9d0febacfad571a9c25934f151 (diff) | |
download | rneovim-a848fad656505c44983b606d7b484869b33dac56.tar.gz rneovim-a848fad656505c44983b606d7b484869b33dac56.tar.bz2 rneovim-a848fad656505c44983b606d7b484869b33dac56.zip |
Removed mch_check_win
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 d95e81bf35..6743b1a993 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -183,16 +183,6 @@ void mch_init() } /* - * Check_win checks whether we have an interactive stdout. - */ -int mch_check_win(int argc, char **argv) -{ - if (isatty(1)) - return OK; - return FAIL; -} - -/* * Return TRUE if the input comes from a terminal, FALSE otherwise. */ int mch_input_isatty() |