diff options
author | Michael Reed <m.reed@mykolab.com> | 2014-11-18 01:06:53 -0500 |
---|---|---|
committer | Michael Reed <m.reed@mykolab.com> | 2014-11-27 23:42:40 -0500 |
commit | 83a4c9d58ce9265fc5b18e1f4e289552a56e9a56 (patch) | |
tree | 2f793a1d8b9df796e4ab5eb5d91939d3e577463b /src | |
parent | c8d57e25e94dba23837d7ed10d681faeba5d98d2 (diff) | |
download | rneovim-83a4c9d58ce9265fc5b18e1f4e289552a56e9a56.tar.gz rneovim-83a4c9d58ce9265fc5b18e1f4e289552a56e9a56.tar.bz2 rneovim-83a4c9d58ce9265fc5b18e1f4e289552a56e9a56.zip |
Remove Atari MiNT references
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/os_unix.c | 5 | ||||
-rw-r--r-- | src/nvim/term.c | 4 |
2 files changed, 4 insertions, 5 deletions
diff --git a/src/nvim/os_unix.c b/src/nvim/os_unix.c index fb65f8603f..311ff414a9 100644 --- a/src/nvim/os_unix.c +++ b/src/nvim/os_unix.c @@ -10,7 +10,7 @@ /* * os_unix.c -- code for all flavors of Unix (BSD, SYSV, SVR4, POSIX, ...) - * Also for BeOS and Atari MiNT. + * Also for BeOS * * A lot of this file was originally written by Juergen Weigert and later * changed beyond recognition. @@ -598,9 +598,8 @@ void mch_settmode(int tmode) */ tnew.c_iflag &= ~ICRNL; tnew.c_lflag &= ~(ICANON | ECHO | ISIG | ECHOE -# if defined(IEXTEN) && !defined(__MINT__) +# if defined(IEXTEN) | IEXTEN /* IEXTEN enables typing ^V on SOLARIS */ - /* but it breaks function keys on MINT */ # endif ); # ifdef ONLCR /* don't map NL -> CR NL, we do it ourselves */ diff --git a/src/nvim/term.c b/src/nvim/term.c index 3d1053bd2f..601e98f562 100644 --- a/src/nvim/term.c +++ b/src/nvim/term.c @@ -639,7 +639,7 @@ static struct builtin_term builtin_termcaps[] = {K_BS, "\x7f"}, /* for some reason 0177 doesn't work */ # endif -# if defined(ALL_BUILTIN_TCAPS) || defined(__MINT__) +# if defined(ALL_BUILTIN_TCAPS) /* * Ordinary vt52 */ @@ -998,7 +998,7 @@ static struct builtin_term builtin_termcaps[] = -#if defined(UNIX) && !defined(__MINT__) +#if defined(UNIX) # define DEFAULT_TERM (char_u *)"ansi" #endif |