File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change 11
11
* os_macosx.m -- Mac specific things for Mac OS X.
12
12
*/
13
13
14
+ /* Suppress compiler warnings to non-C89 code. */
15
+ #if defined(__clang__) && defined(__STRICT_ANSI__)
16
+ # pragma clang diagnostic push
17
+ # pragma clang diagnostic ignored "-Wc99-extensions"
18
+ # pragma clang diagnostic push
19
+ # pragma clang diagnostic ignored "-Wdeclaration-after-statement"
20
+ #endif
21
+
14
22
/* Avoid a conflict for the definition of Boolean between Mac header files and
15
23
* X11 header files. */
16
24
#define NO_X11_INCLUDES
189
197
}
190
198
191
199
#endif /* FEAT_CLIPBOARD */
200
+
201
+ /* Lift the compiler warning suppression. */
202
+ #if defined(__clang__) && defined(__STRICT_ANSI__)
203
+ # pragma clang diagnostic pop
204
+ # pragma clang diagnostic pop
205
+ #endif
Original file line number Diff line number Diff line change @@ -766,6 +766,8 @@ static char *(features[]) =
766
766
767
767
static int included_patches [] =
768
768
{ /* Add new patch number below this line */
769
+ /**/
770
+ 1584 ,
769
771
/**/
770
772
1583 ,
771
773
/**/
You can’t perform that action at this time.
0 commit comments