From 565620a54d14465fe7c2fe912a41eb7a36d93d10 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Wed, 15 Jun 1994 03:54:06 +0000 Subject: Put stdio.h after config.h. --- src/frame.c | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'src/frame.c') diff --git a/src/frame.c b/src/frame.c index f843345d936..5face5086a9 100644 --- a/src/frame.c +++ b/src/frame.c @@ -17,9 +17,9 @@ You should have received a copy of the GNU General Public License along with GNU Emacs; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ -#include - #include + +#include #include "lisp.h" #include "frame.h" #include "termhooks.h" @@ -1055,6 +1055,9 @@ If omitted, FRAME defaults to the currently selected frame.") } #endif + /* Make menu bar update for the Buffers and Frams menus. */ + windows_or_buffers_changed++; + return frame; } @@ -1093,6 +1096,9 @@ but if the second optional argument FORCE is non-nil, you may do so.") x_make_frame_invisible (XFRAME (frame)); #endif + /* Make menu bar update for the Buffers and Frams menus. */ + windows_or_buffers_changed++; + return Qnil; } @@ -1126,6 +1132,9 @@ If omitted, FRAME defaults to the currently selected frame.") x_iconify_frame (XFRAME (frame)); #endif + /* Make menu bar update for the Buffers and Frams menus. */ + windows_or_buffers_changed++; + return Qnil; } -- cgit v1.2.1