; Fix a call to update_window for !HAVE_EXT_MENU_BAR

* src/dispnew.c (update_menu_bar): Remove superfluous argument.
This commit is contained in:
Gerd Möllmann 2024-12-19 13:14:42 +01:00
parent a61b968ccf
commit 5ed6cd53f7

View file

@ -3757,7 +3757,7 @@ update_menu_bar (struct frame *f)
{
#if defined HAVE_WINDOW_SYSTEM && !defined HAVE_EXT_MENU_BAR
if (WINDOWP (f->menu_bar_window))
update_window (XWINDOW (f->menu_bar_window), true);
update_window (XWINDOW (f->menu_bar_window));
#endif
}