diff options
author | Bram Moolenaar <Bram@vim.org> | 2015-12-31 19:07:19 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2015-12-31 19:07:19 +0100 |
commit | e7fedb6ebe72d9a475aa65109b77d5ed4667067a (patch) | |
tree | 19327fc9d1ca538d9c5c81c7284adf492e790e6d /src/ui.c | |
parent | e3303cb0817e826e3c25d5dc4ac10b569d0841e1 (diff) | |
download | vim-git-e7fedb6ebe72d9a475aa65109b77d5ed4667067a.tar.gz |
patch 7.4.1008v7.4.1008
Problem: The OS/2 code pollutes the source while nobody uses it these days.
Solution: Drop the support for OS/2.
Diffstat (limited to 'src/ui.c')
-rw-r--r-- | src/ui.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1772,7 +1772,7 @@ read_from_input_buf(buf, maxlen) fill_input_buf(exit_on_error) int exit_on_error UNUSED; { -#if defined(UNIX) || defined(OS2) || defined(VMS) || defined(MACOS_X_UNIX) +#if defined(UNIX) || defined(VMS) || defined(MACOS_X_UNIX) int len; int try; static int did_read_something = FALSE; @@ -1796,7 +1796,7 @@ fill_input_buf(exit_on_error) return; } #endif -#if defined(UNIX) || defined(OS2) || defined(VMS) || defined(MACOS_X_UNIX) +#if defined(UNIX) || defined(VMS) || defined(MACOS_X_UNIX) if (vim_is_input_buf_full()) return; /* @@ -1940,9 +1940,9 @@ fill_input_buf(exit_on_error) ++inbufcount; } } -#endif /* UNIX or OS2 or VMS*/ +#endif /* UNIX or VMS*/ } -#endif /* defined(UNIX) || defined(FEAT_GUI) || defined(OS2) || defined(VMS) */ +#endif /* defined(UNIX) || defined(FEAT_GUI) || defined(VMS) */ /* * Exit because of an input read error. |