Skip to content

Commit 26cd306

Browse files
committed
patch 8.2.1715: Motif GUI: commented out code missed {}
Problem: Motif GUI: commented out code missed {}. Solution: Add {} and reenable the code. (similar to #6989)
1 parent 8902b31 commit 26cd306

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

src/gui_motif.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1242,11 +1242,11 @@ add_pixmap_args(vimmenu_T *menu, Arg *args, int n)
12421242
}
12431243
else
12441244
{
1245-
# if 0 // DISABLED - this causes a crash when running "make test_gui" in
12461245
// Test_colorscheme()
12471246
if (menu->xpm_fname != NULL)
1247+
{
12481248
XtSetArg(args[n], XmNpixmapFile, menu->xpm_fname); n++;
1249-
# endif
1249+
}
12501250
XtSetArg(args[n], XmNpixmapData, menu->xpm); n++;
12511251
XtSetArg(args[n], XmNlabelLocation, XmBOTTOM); n++;
12521252
}

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -750,6 +750,8 @@ static char *(features[]) =
750750

751751
static int included_patches[] =
752752
{ /* Add new patch number below this line */
753+
/**/
754+
1715,
753755
/**/
754756
1714,
755757
/**/

0 commit comments

Comments
 (0)