Remove code and checks for unsupported systems.

Remove remnants of support for systems including
__EMX__, MSDOS, OS2, AMIGA and MORPHOS.
This commit is contained in:
Chris Watkins
2014-04-22 22:49:52 -07:00
committed by Thiago de Arruda
parent 4e1b364a3e
commit 9da32a1f78
27 changed files with 111 additions and 295 deletions

View File

@@ -1067,7 +1067,7 @@ typedef void *vim_acl_T; /* dummy to pass an ACL to a function */
#define fnamencmp(x, y, n) vim_fnamencmp((char_u *)(x), (char_u *)(y), \
(size_t)(n))
#if defined(UNIX) || defined(FEAT_GUI) || defined(OS2) || defined(VMS)
#if defined(UNIX) || defined(FEAT_GUI)
# define USE_INPUT_BUF
#endif
@@ -1284,27 +1284,6 @@ typedef int VimClipboard; /* This is required for the prototypes. */
#include "globals.h" /* global variables and messages */
/*
* If console dialog not supported, but GUI dialog is, use the GUI one.
*/
/*
* Default filters for gui_mch_browse().
* The filters are almost system independent. Except for the difference
* between "*" and "*.*" for MSDOS-like systems.
* NOTE: Motif only uses the very first pattern. Therefore
* BROWSE_FILTER_DEFAULT should start with a "*" pattern.
*/
/* stop using fastcall for Borland */
/*
* The following macros stop display/event loop nesting at the wrong time.
*/
/*
* Return byte length of character that starts with byte "b".
* Returns 1 for a single-byte character.