summaryrefslogtreecommitdiff
path: root/src/os_unix.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-07-14 23:02:44 +0200
committerBram Moolenaar <Bram@vim.org>2020-07-14 23:02:44 +0200
commite3f915d12c8fe0466918a29ab4eaef153f71a2cd (patch)
tree40dbefda787ad5025343d543a1bf7d2b90c99d13 /src/os_unix.c
parentceb56ddbafbca01e52ff4291d9480bf83d739793 (diff)
downloadvim-git-e3f915d12c8fe0466918a29ab4eaef153f71a2cd.tar.gz
patch 8.2.1215: Atari MiNT support is outdatedv8.2.1215
Problem: Atari MiNT support is outdated. Solution: Nobody responded this code is still useful, so let's delete it.
Diffstat (limited to 'src/os_unix.c')
-rw-r--r--src/os_unix.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/os_unix.c b/src/os_unix.c
index a82256c67..c9b3f92ff 100644
--- a/src/os_unix.c
+++ b/src/os_unix.c
@@ -3505,9 +3505,8 @@ mch_settmode(tmode_T tmode)
// ~IXON disables CTRL-S stopping output, so that it can be mapped.
tnew.c_iflag &= ~(ICRNL | IXON);
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