diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-08-10 20:53:05 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-08-10 20:53:05 +0200 |
commit | a6b7a08ae04a3cd4d9c45c906bb7a197e2135179 (patch) | |
tree | 2adc8f539865a19045daac26adb5de10a4522f88 /src/gui.h | |
parent | a357e44ccdf5cfe9f6d35cc348ca33ccd973e1a9 (diff) | |
download | vim-git-a6b7a08ae04a3cd4d9c45c906bb7a197e2135179.tar.gz |
patch 7.4.2192v7.4.2192
Problem: Generating prototypes with Cygwin doesn't work well.
Solution: Change #ifdefs. (Ken Takata)
Diffstat (limited to 'src/gui.h')
-rw-r--r-- | src/gui.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -16,7 +16,7 @@ # include <X11/StringDefs.h> #endif -#ifdef FEAT_BEVAL +#if defined(FEAT_BEVAL) || defined(PROTO) # include "gui_beval.h" #endif |