aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Möllmann2024-12-19 13:14:42 +0100
committerGerd Möllmann2024-12-19 13:14:42 +0100
commit5ed6cd53f7ca6570e5bb46aa32eb54c3e1b86615 (patch)
treece7a7f8da04ceb1965c350be1f2372ce73830a29
parenta61b968ccfe8fa7e2f1fcf7667781a1c0527389a (diff)
downloademacs-5ed6cd53f7ca6570e5bb46aa32eb54c3e1b86615.tar.gz
emacs-5ed6cd53f7ca6570e5bb46aa32eb54c3e1b86615.zip
; Fix a call to update_window for !HAVE_EXT_MENU_BAR
* src/dispnew.c (update_menu_bar): Remove superfluous argument.
-rw-r--r--src/dispnew.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dispnew.c b/src/dispnew.c
index cbc7d4d7aaf..f628415359c 100644
--- a/src/dispnew.c
+++ b/src/dispnew.c
@@ -3757,7 +3757,7 @@ update_menu_bar (struct frame *f)
3757{ 3757{
3758#if defined HAVE_WINDOW_SYSTEM && !defined HAVE_EXT_MENU_BAR 3758#if defined HAVE_WINDOW_SYSTEM && !defined HAVE_EXT_MENU_BAR
3759 if (WINDOWP (f->menu_bar_window)) 3759 if (WINDOWP (f->menu_bar_window))
3760 update_window (XWINDOW (f->menu_bar_window), true); 3760 update_window (XWINDOW (f->menu_bar_window));
3761#endif 3761#endif
3762} 3762}
3763 3763