# HG changeset patch # User Christian Brabandt # Date 1500921006 -7200 # Node ID 0aa1910a3dfa359e621343fb53ea9e074c6d4944 # Parent 970948345309fefeb3b2ceab46963a67faf09a3c patch 8.0.0767: build failure with Athena and Motif commit https://github.com/vim/vim/commit/d60547bf80881f6c99bcbd7c8c4c6cfb7e405a90 Author: Bram Moolenaar Date: Mon Jul 24 20:15:30 2017 +0200 patch 8.0.0767: build failure with Athena and Motif Problem: Build failure with Athena and Motif. Solution: Move local variable delcarations. (Kazunobu Kuriyama) diff --git a/src/gui_x11.c b/src/gui_x11.c --- a/src/gui_x11.c +++ b/src/gui_x11.c @@ -2270,8 +2270,6 @@ fontset_ascent(XFontSet fs) gui_mch_get_color(char_u *name) { guicolor_T requested; - XColor available; - Colormap colormap; /* can't do this when GUI not running */ if (!gui.in_use || name == NULL || *name == NUL) @@ -2295,6 +2293,8 @@ gui_mch_get_color(char_u *name) gui_mch_get_rgb_color(int r, int g, int b) { char spec[8]; /* space enough to hold "#RRGGBB" */ + XColor available; + Colormap colormap; vim_snprintf(spec, sizeof(spec), "#%.2x%.2x%.2x", r, g, b); colormap = DefaultColormap(gui.dpy, DefaultScreen(gui.dpy)); diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -770,6 +770,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 767, +/**/ 766, /**/ 765,