From a6b7a08ae04a3cd4d9c45c906bb7a197e2135179 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 10 Aug 2016 20:53:05 +0200 Subject: patch 7.4.2192 Problem: Generating prototypes with Cygwin doesn't work well. Solution: Change #ifdefs. (Ken Takata) --- src/vim.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/vim.h') diff --git a/src/vim.h b/src/vim.h index 085f73d8a..05f97ba69 100644 --- a/src/vim.h +++ b/src/vim.h @@ -2109,7 +2109,7 @@ typedef enum * been seen at that stage. But it must be before globals.h, where error_ga * is declared. */ #if !defined(FEAT_GUI_W32) && !defined(FEAT_GUI_X11) \ - && !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_MAC) + && !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_MAC) && !defined(PROTO) # define mch_errmsg(str) fprintf(stderr, "%s", (str)) # define display_errors() fflush(stderr) # define mch_msg(str) printf("%s", (str)) -- cgit v1.2.1