comparison src/evalfunc.c @ 15955:907481b9260f v8.1.0983

patch 8.1.0983: checking __CYGWIN32__ unnecessarily commit https://github.com/vim/vim/commit/1eed532999adc6a2c902fa07d256be988520a995 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Feb 26 17:03:54 2019 +0100 patch 8.1.0983: checking __CYGWIN32__ unnecessarily Problem: Checking __CYGWIN32__ unnecessarily. Solution: Remove the checks. (Ken Takata)
author Bram Moolenaar <Bram@vim.org>
date Tue, 26 Feb 2019 17:15:13 +0100
parents de2c2a378cd1
children ddd82b1c9e9d
comparison
equal deleted inserted replaced
15954:4cab61f1d8d4 15955:907481b9260f
6153 "vms", 6153 "vms",
6154 #endif 6154 #endif
6155 #ifdef MSWIN 6155 #ifdef MSWIN
6156 "win32", 6156 "win32",
6157 #endif 6157 #endif
6158 #if defined(UNIX) && (defined(__CYGWIN32__) || defined(__CYGWIN__)) 6158 #if defined(UNIX) && defined(__CYGWIN__)
6159 "win32unix", 6159 "win32unix",
6160 #endif 6160 #endif
6161 #ifdef _WIN64 6161 #ifdef _WIN64
6162 "win64", 6162 "win64",
6163 #endif 6163 #endif