commit | b247e0622ef16b7819f5dadefd3e3f0a803b4021 | [log] [tgz] |
---|---|---|
author | K.Takata <kentkt@csc.jp> | Mon Feb 07 10:45:23 2022 +0000 |
committer | Bram Moolenaar <Bram@vim.org> | Mon Feb 07 10:45:23 2022 +0000 |
tree | 46fdc730e9b2dbc3438df20354eeaa2720d56828 | |
parent | 6bf821e8abe1da24e5d0624f032d7eda745756e8 [diff] [blame] |
patch 8.2.4316: __CYGWIN32__ is not defined on 64 bit systems Problem: __CYGWIN32__ is not defined on 64 bit systems. Solution: Update #ifdefs. (Ken Takata, closes #9709)
diff --git a/src/main.c b/src/main.c index 5d02c95..80cff7c 100644 --- a/src/main.c +++ b/src/main.c
@@ -2571,7 +2571,7 @@ } } #endif -#ifdef __CYGWIN32__ +#ifdef __CYGWIN__ /* * If vim is invoked by non-Cygwin tools, convert away any * DOS paths, so things like .swp files are created correctly.