changeset 7900:60795e826dad

Put stdio.h after config.h.
author Richard M. Stallman <rms@gnu.org>
date Wed, 15 Jun 1994 03:54:06 +0000
parents facf6b0e97ff
children 28f9608f3c58
files src/callproc.c src/dispnew.c src/frame.c src/term.c src/widget.c src/xmenu.c
diffstat 6 files changed, 18 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/src/callproc.c	Wed Jun 15 03:53:12 1994 +0000
+++ b/src/callproc.c	Wed Jun 15 03:54:06 1994 +0000
@@ -20,9 +20,9 @@
 
 #include <signal.h>
 #include <errno.h>
-#include <stdio.h>
 
 #include <config.h>
+#include <stdio.h>
 
 extern int errno;
 extern char *strerror ();
--- a/src/dispnew.c	Wed Jun 15 03:53:12 1994 +0000
+++ b/src/dispnew.c	Wed Jun 15 03:54:06 1994 +0000
@@ -19,9 +19,10 @@
 
 
 #include <signal.h>
-#include <stdio.h>
 
 #include <config.h>
+
+#include <stdio.h>
 #include <ctype.h>
 
 #include "lisp.h"
--- a/src/frame.c	Wed Jun 15 03:53:12 1994 +0000
+++ b/src/frame.c	Wed Jun 15 03:54:06 1994 +0000
@@ -17,9 +17,9 @@
 along with GNU Emacs; see the file COPYING.  If not, write to
 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
-#include <stdio.h>
+#include <config.h>
 
-#include <config.h>
+#include <stdio.h>
 #include "lisp.h"
 #include "frame.h"
 #include "termhooks.h"
@@ -1055,6 +1055,9 @@
     }
 #endif
 
+  /* Make menu bar update for the Buffers and Frams menus.  */
+  windows_or_buffers_changed++;
+
   return frame;
 }
 
@@ -1093,6 +1096,9 @@
     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 @@
       x_iconify_frame (XFRAME (frame));
 #endif
 
+  /* Make menu bar update for the Buffers and Frams menus.  */
+  windows_or_buffers_changed++;
+
   return Qnil;
 }
 
--- a/src/term.c	Wed Jun 15 03:53:12 1994 +0000
+++ b/src/term.c	Wed Jun 15 03:54:06 1994 +0000
@@ -18,9 +18,9 @@
 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
 
+#include <config.h>
 #include <stdio.h>
 #include <ctype.h>
-#include <config.h>
 #include "termchar.h"
 #include "termopts.h"
 #include "cm.h"
--- a/src/widget.c	Wed Jun 15 03:53:12 1994 +0000
+++ b/src/widget.c	Wed Jun 15 03:54:06 1994 +0000
@@ -19,8 +19,8 @@
 
 /* Emacs 19 face widget ported by Fred Pierresteguy */
 
+#include <config.h>
 #include <stdio.h>
-#include <config.h>
 #include "lisp.h"
 #include "xterm.h"
 
--- a/src/xmenu.c	Wed Jun 15 03:53:12 1994 +0000
+++ b/src/xmenu.c	Wed Jun 15 03:54:06 1994 +0000
@@ -29,11 +29,11 @@
 
 /* Rewritten for clarity and GC protection by rms in Feb 94.  */
 
-#include <stdio.h>
-
 /* On 4.3 this loses if it comes after xterm.h.  */
 #include <signal.h>
 #include <config.h>
+
+#include <stdio.h>
 #include "lisp.h"
 #include "termhooks.h"
 #include "frame.h"