diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-01-29 23:46:21 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-01-29 23:46:21 +0100 |
commit | 3e96c3d241ab657cf4df0913ea8de50a6cb90730 (patch) | |
tree | a80c7a34ae529aac456dbc43a65db62e39398ed1 /src/os_mac_conv.c | |
parent | 569850724ef37061bfd4cb6423f04c8b8c690515 (diff) | |
download | vim-git-3e96c3d241ab657cf4df0913ea8de50a6cb90730.tar.gz |
patch 7.4.1202v7.4.1202
Problem: Still one more file still using __ARGS.
Solution: Remove __ARGS in the last file. (script by Hirohito Higashi)
(closes #612)
Diffstat (limited to 'src/os_mac_conv.c')
-rw-r--r-- | src/os_mac_conv.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/os_mac_conv.c b/src/os_mac_conv.c index 4f71d6554..d14ce365d 100644 --- a/src/os_mac_conv.c +++ b/src/os_mac_conv.c @@ -17,7 +17,8 @@ #define BalloonEval int /* used in header files */ #include "vim.h" -#ifndef FEAT_GUI_MAC + +#if !defined(FEAT_GUI_MAC) && !defined(PROTO) # include <CoreServices/CoreServices.h> #endif |