aboutsummaryrefslogtreecommitdiff
path: root/src/macros.h
diff options
context:
space:
mode:
authorChris Watkins <chris.watkins88@gmail.com>2014-04-22 22:49:52 -0700
committerThiago de Arruda <tpadilha84@gmail.com>2014-04-28 07:43:57 -0300
commit9da32a1f78fe075663466ac1349cb1495420591f (patch)
tree2b41897e8d906d1061b84ecf3dbe6b35926ec55c /src/macros.h
parent4e1b364a3e255742522d4d76c5ccddd7a36c1769 (diff)
downloadrneovim-9da32a1f78fe075663466ac1349cb1495420591f.tar.gz
rneovim-9da32a1f78fe075663466ac1349cb1495420591f.tar.bz2
rneovim-9da32a1f78fe075663466ac1349cb1495420591f.zip
Remove code and checks for unsupported systems.
Remove remnants of support for systems including __EMX__, MSDOS, OS2, AMIGA and MORPHOS.
Diffstat (limited to 'src/macros.h')
-rw-r--r--src/macros.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/macros.h b/src/macros.h
index 8068a3d1f9..8dd412f838 100644
--- a/src/macros.h
+++ b/src/macros.h
@@ -94,10 +94,6 @@
*/
#define vim_isbreak(c) (breakat_flags[(char_u)(c)])
-/*
- * On VMS file names are different and require a translation.
- * On the Mac open() has only two arguments.
- */
# define mch_fopen(n, p) fopen((n), (p))
# define mch_fstat(n, p) fstat((n), (p))
# ifdef STAT_IGNORES_SLASH
@@ -117,7 +113,7 @@
# define mch_open(n, m, p) open((n), (m), (p))
/* mch_open_rw(): invoke mch_open() with third argument for user R/W. */
-#if defined(UNIX) || defined(VMS) /* open in rw------- mode */
+#if defined(UNIX) /* open in rw------- mode */
# define mch_open_rw(n, f) mch_open((n), (f), (mode_t)0600)
#else
# define mch_open_rw(n, f) mch_open((n), (f), 0)