From: Gerd Möllmann Date: Thu, 19 Dec 2024 12:14:42 +0000 (+0100) Subject: ; Fix a call to update_window for !HAVE_EXT_MENU_BAR X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8faff752e6e94bbd9ba90fba3e1e805065e6b717;p=emacs.git ; Fix a call to update_window for !HAVE_EXT_MENU_BAR * src/dispnew.c (update_menu_bar): Remove superfluous argument. (cherry picked from commit 5ed6cd53f7ca6570e5bb46aa32eb54c3e1b86615) --- diff --git a/src/dispnew.c b/src/dispnew.c index 21411f2e147..a1b3c3ae101 100644 --- a/src/dispnew.c +++ b/src/dispnew.c @@ -3754,7 +3754,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 }