diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/menu.c | 5 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/src/menu.c b/src/menu.c index b6f8ce47a..2802de33d 100644 --- a/src/menu.c +++ b/src/menu.c @@ -1970,7 +1970,12 @@ gui_show_popupmenu(void) /* Only show a popup when it is defined and has entries */ if (menu != NULL && menu->children != NULL) + { + /* Update the menus now, in case the MenuPopup autocommand did + * anything. */ + gui_update_menus(0); gui_mch_show_popupmenu(menu); + } } #endif /* FEAT_GUI */ diff --git a/src/version.c b/src/version.c index 4a2d5378a..1acd1e4cb 100644 --- a/src/version.c +++ b/src/version.c @@ -754,6 +754,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1915, +/**/ 1914, /**/ 1913, |