summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/gui_motif.c4
-rw-r--r--src/version.c2
2 files changed, 6 insertions, 0 deletions
diff --git a/src/gui_motif.c b/src/gui_motif.c
index 9d13b57b4e..57d50b0eed 100644
--- a/src/gui_motif.c
+++ b/src/gui_motif.c
@@ -916,9 +916,13 @@ gui_mch_add_menu(vimmenu_T *menu, int idx)
# endif
{
if (gui.menu_bg_pixel != INVALCOLOR)
+ {
XtSetArg(arg[0], XmNbackground, gui.menu_bg_pixel); n++;
+ }
if (gui.menu_fg_pixel != INVALCOLOR)
+ {
XtSetArg(arg[1], XmNforeground, gui.menu_fg_pixel); n++;
+ }
menu->submenu_id = XmCreatePopupMenu(textArea, "contextMenu",
arg, n);
menu->id = (Widget)0;
diff --git a/src/version.c b/src/version.c
index 615abc74e2..a7def1b6cf 100644
--- a/src/version.c
+++ b/src/version.c
@@ -751,6 +751,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1713,
+/**/
1712,
/**/
1711,