We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48ac671 commit b7ed839Copy full SHA for b7ed839
2 files changed
src/gui.h
@@ -29,6 +29,12 @@
29
# include <gtk/gtk.h>
30
#endif
31
32
+// Needed when generating prototypes, since FEAT_GUI is always defined then.
33
+#if defined(FEAT_XCLIPBOARD) && !defined(FEAT_GUI_MOTIF) \
34
+ && !defined(FEAT_GUI_ATHENA) && !defined(FEAT_GUI_GTK)
35
+# include <X11/Intrinsic.h>
36
+#endif
37
+
38
#ifdef FEAT_GUI_MAC
39
# include <Types.h>
40
/*# include <Memory.h>*/
src/version.c
@@ -777,6 +777,8 @@ static char *(features[]) =
777
778
static int included_patches[] =
779
{ /* Add new patch number below this line */
780
+/**/
781
+ 1633,
782
/**/
783
1632,
784
0 commit comments