From 0cc7bdb8cf38e36faed6b8dcc3892ef7d40b9f15 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Wed, 16 Mar 1994 03:29:20 +0000 Subject: [PATCH] (update_menu_bar): Delete unused second argument. Callers changed. --- src/xdisp.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/xdisp.c b/src/xdisp.c index 8697c530771..bad74b0ee77 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -905,15 +905,14 @@ update_menu_bars (window) Lisp_Object window; { for (; !NILP (window); window = XWINDOW (window)->next) - update_menu_bar (window, 0); + update_menu_bar (window); } /* Update the menu bar item list for window WINDOW and its subwindows. */ static void -update_menu_bar (window, just_this_one) +update_menu_bar (window) Lisp_Object window; - int just_this_one; { register struct window *w = XWINDOW (window); struct buffer *old = current_buffer; -- 2.39.5