# HG changeset patch # User Bram Moolenaar # Date 1350530312 -7200 # Node ID 337a4368fd2b68b9822b94e595d77b4d6773bfa4 # Parent 3346d901546830f9d20ee456e86fc60b9e393ffc updated for version 7.3.692 Problem: Can't build GTK version with GTK 2.0. Solution: Put GtkFileFilter declaration in the right place. (Yegappan Lakshmanan) diff --git a/src/gui_gtk.c b/src/gui_gtk.c --- a/src/gui_gtk.c +++ b/src/gui_gtk.c @@ -845,7 +845,6 @@ gui_mch_browse(int saving UNUSED, char_u dirbuf[MAXPATHL]; guint log_handler; const gchar *domain = "Gtk"; - GtkFileFilter *gfilter; title = CONVERT_TO_UTF8(title); @@ -883,6 +882,7 @@ gui_mch_browse(int saving UNUSED, int i = 0; char_u *patt; char_u *p = filter; + GtkFileFilter *gfilter; gfilter = gtk_file_filter_new(); patt = alloc(STRLEN(filter)); diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -720,6 +720,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 692, +/**/ 691, /**/ 690,