From 57aeea1e474552bb34838242334cea7d953ddda7 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 11 Nov 1995 00:49:45 +0000 Subject: [PATCH] (set_menu_bar_lines): Record the fact that the window configuration changes. (set_menu_bar_lines_1): Mark the window as modified. --- src/frame.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/frame.c b/src/frame.c index 574dc0a8ad8..c6c7cbb95d3 100644 --- a/src/frame.c +++ b/src/frame.c @@ -130,6 +130,7 @@ set_menu_bar_lines_1 (window, n) { struct window *w = XWINDOW (window); + XSETFASTINT (w->last_modified, 0); XSETFASTINT (w->top, XFASTINT (w->top) + n); XSETFASTINT (w->height, XFASTINT (w->height) - n); @@ -165,8 +166,13 @@ set_menu_bar_lines (f, value, oldval) else nlines = 0; - FRAME_MENU_BAR_LINES (f) = nlines; - set_menu_bar_lines_1 (f->root_window, nlines - olines); + if (nlines != olines) + { + windows_or_buffers_changed++; + FRAME_WINDOW_SIZES_CHANGED (f) = 1; + FRAME_MENU_BAR_LINES (f) = nlines; + set_menu_bar_lines_1 (f->root_window, nlines - olines); + } } #ifdef MULTI_FRAME -- 2.39.2