diff options
| author | Karl Heuer | 1994-03-16 03:29:20 +0000 |
|---|---|---|
| committer | Karl Heuer | 1994-03-16 03:29:20 +0000 |
| commit | 0cc7bdb8cf38e36faed6b8dcc3892ef7d40b9f15 (patch) | |
| tree | a2f565fb7c2c865bd4af63741e49f80193b87cd6 | |
| parent | 98bc00f0946c947085ae980bdd5cb36ef6ecf4cd (diff) | |
| download | emacs-0cc7bdb8cf38e36faed6b8dcc3892ef7d40b9f15.tar.gz emacs-0cc7bdb8cf38e36faed6b8dcc3892ef7d40b9f15.zip | |
(update_menu_bar): Delete unused second argument. Callers changed.
| -rw-r--r-- | src/xdisp.c | 5 |
1 files 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) | |||
| 905 | Lisp_Object window; | 905 | Lisp_Object window; |
| 906 | { | 906 | { |
| 907 | for (; !NILP (window); window = XWINDOW (window)->next) | 907 | for (; !NILP (window); window = XWINDOW (window)->next) |
| 908 | update_menu_bar (window, 0); | 908 | update_menu_bar (window); |
| 909 | } | 909 | } |
| 910 | 910 | ||
| 911 | /* Update the menu bar item list for window WINDOW and its subwindows. */ | 911 | /* Update the menu bar item list for window WINDOW and its subwindows. */ |
| 912 | 912 | ||
| 913 | static void | 913 | static void |
| 914 | update_menu_bar (window, just_this_one) | 914 | update_menu_bar (window) |
| 915 | Lisp_Object window; | 915 | Lisp_Object window; |
| 916 | int just_this_one; | ||
| 917 | { | 916 | { |
| 918 | register struct window *w = XWINDOW (window); | 917 | register struct window *w = XWINDOW (window); |
| 919 | struct buffer *old = current_buffer; | 918 | struct buffer *old = current_buffer; |