diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-02-18 21:41:37 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-02-18 21:41:37 +0100 |
commit | 0472b6d149445579e3a63519b15f099f9adda3f7 (patch) | |
tree | eb18d68b92ec39e7ea27de818df4b6b68c23d59d /src/vim.h | |
parent | d53931ae7306acce2cfe8c44db0a15d79adf9e00 (diff) | |
download | vim-git-0472b6d149445579e3a63519b15f099f9adda3f7.tar.gz |
patch 8.1.0949: MS-windows defines GUI macros different than other systemsv8.1.0949
Problem: MS-windows defines GUI macros different than other systems.
Solution: Swap FEAT_GUI and FEAT_GUI_MSWIN. (Hirohito Higashi, closes #3996)
Diffstat (limited to 'src/vim.h')
-rw-r--r-- | src/vim.h | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -15,9 +15,6 @@ // Note: If you want to check for 64-bit use the _WIN64 macro. #if defined(WIN32) || defined(_WIN32) # define MSWIN -# ifdef FEAT_GUI -# define FEAT_GUI_MSWIN -# endif #endif // use fastcall for Borland, when compiling for MS-Windows |