Mercurial > vim
diff src/gui_motif.c @ 22333:2ccc3e68b617 v8.2.1715
patch 8.2.1715: Motif GUI: commented out code missed {}
Commit: https://github.com/vim/vim/commit/26cd3063b2e2084cfd17989e7584c64f278aaaef
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Sep 20 21:13:27 2020 +0200
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 https://github.com/vim/vim/issues/6989)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 20 Sep 2020 21:15:05 +0200 |
parents | 858d7ceb1135 |
children | 20ccf5f7dc6d |
line wrap: on
line diff
--- a/src/gui_motif.c +++ b/src/gui_motif.c @@ -1242,11 +1242,11 @@ add_pixmap_args(vimmenu_T *menu, Arg *ar } else { -# if 0 // DISABLED - this causes a crash when running "make test_gui" in // Test_colorscheme() if (menu->xpm_fname != NULL) + { XtSetArg(args[n], XmNpixmapFile, menu->xpm_fname); n++; -# endif + } XtSetArg(args[n], XmNpixmapData, menu->xpm); n++; XtSetArg(args[n], XmNlabelLocation, XmBOTTOM); n++; }