comparison src/os_unix.c @ 21329:bb3f60b0aca0 v8.2.1215

patch 8.2.1215: Atari MiNT support is outdated Commit: https://github.com/vim/vim/commit/e3f915d12c8fe0466918a29ab4eaef153f71a2cd Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jul 14 23:02:44 2020 +0200 patch 8.2.1215: Atari MiNT support is outdated Problem: Atari MiNT support is outdated. Solution: Nobody responded this code is still useful, so let's delete it.
author Bram Moolenaar <Bram@vim.org>
date Tue, 14 Jul 2020 23:15:03 +0200
parents ce4c58bc5e9e
children 35921b7fc07a
comparison
equal deleted inserted replaced
21328:6a4f919b3a1a 21329:bb3f60b0aca0
3503 { 3503 {
3504 // ~ICRNL enables typing ^V^M 3504 // ~ICRNL enables typing ^V^M
3505 // ~IXON disables CTRL-S stopping output, so that it can be mapped. 3505 // ~IXON disables CTRL-S stopping output, so that it can be mapped.
3506 tnew.c_iflag &= ~(ICRNL | IXON); 3506 tnew.c_iflag &= ~(ICRNL | IXON);
3507 tnew.c_lflag &= ~(ICANON | ECHO | ISIG | ECHOE 3507 tnew.c_lflag &= ~(ICANON | ECHO | ISIG | ECHOE
3508 # if defined(IEXTEN) && !defined(__MINT__) 3508 # if defined(IEXTEN)
3509 | IEXTEN // IEXTEN enables typing ^V on SOLARIS 3509 | IEXTEN // IEXTEN enables typing ^V on SOLARIS
3510 // but it breaks function keys on MINT
3511 # endif 3510 # endif
3512 ); 3511 );
3513 # ifdef ONLCR 3512 # ifdef ONLCR
3514 // Don't map NL -> CR NL, we do it ourselves. 3513 // Don't map NL -> CR NL, we do it ourselves.
3515 // Also disable expanding tabs if possible. 3514 // Also disable expanding tabs if possible.