From: Richard M. Stallman Date: Sat, 11 Nov 1995 00:49:45 +0000 (+0000) Subject: (set_menu_bar_lines): Record the fact that the window configuration changes. X-Git-Tag: emacs-19.34~2362 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=57aeea1e474552bb34838242334cea7d953ddda7;p=emacs.git (set_menu_bar_lines): Record the fact that the window configuration changes. (set_menu_bar_lines_1): Mark the window as modified. --- 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