aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/os_unix.c
diff options
context:
space:
mode:
authorMichael Reed <m.reed@mykolab.com>2014-11-18 00:09:46 -0500
committerMichael Reed <m.reed@mykolab.com>2014-11-27 23:42:40 -0500
commitc8d57e25e94dba23837d7ed10d681faeba5d98d2 (patch)
tree70b339785bd1e328148acb01a88cd32af3087dde /src/nvim/os_unix.c
parent68cee4c28d6c309e18ae35eeba9d5dffaf1078ca (diff)
downloadrneovim-c8d57e25e94dba23837d7ed10d681faeba5d98d2.tar.gz
rneovim-c8d57e25e94dba23837d7ed10d681faeba5d98d2.tar.bz2
rneovim-c8d57e25e94dba23837d7ed10d681faeba5d98d2.zip
Remove NeXTSTEP references
Remove trailing whitespace as well.
Diffstat (limited to 'src/nvim/os_unix.c')
-rw-r--r--src/nvim/os_unix.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/nvim/os_unix.c b/src/nvim/os_unix.c
index 3bf1198b46..fb65f8603f 100644
--- a/src/nvim/os_unix.c
+++ b/src/nvim/os_unix.c
@@ -569,9 +569,8 @@ void mch_settmode(int tmode)
{
static int first = TRUE;
- /* Why is NeXT excluded here (and not in os_unixx.h)? */
#if defined(ECHOE) && defined(ICANON) && (defined(HAVE_TERMIO_H) || \
- defined(HAVE_TERMIOS_H)) && !defined(__NeXT__)
+ defined(HAVE_TERMIOS_H))
/*
* for "new" tty systems
*/
@@ -667,9 +666,8 @@ void get_stty(void)
char_u buf[2];
char_u *p;
- /* Why is NeXT excluded here (and not in os_unixx.h)? */
#if defined(ECHOE) && defined(ICANON) && (defined(HAVE_TERMIO_H) || \
- defined(HAVE_TERMIOS_H)) && !defined(__NeXT__)
+ defined(HAVE_TERMIOS_H))
/* for "new" tty systems */
# ifdef HAVE_TERMIOS_H
struct termios keys;