]> git.eshelyaron.com Git - emacs.git/commitdiff
Put stdio.h after config.h.
authorRichard M. Stallman <rms@gnu.org>
Wed, 15 Jun 1994 03:54:06 +0000 (03:54 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 15 Jun 1994 03:54:06 +0000 (03:54 +0000)
src/callproc.c
src/dispnew.c
src/frame.c
src/term.c
src/widget.c
src/xmenu.c

index 14e34454f713082301e68cffa3df7649838cbb4c..4f66b5afc4a85d12d88ee3092c49c97db8ffb28c 100644 (file)
@@ -20,9 +20,9 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
 #include <signal.h>
 #include <errno.h>
-#include <stdio.h>
 
 #include <config.h>
+#include <stdio.h>
 
 extern int errno;
 extern char *strerror ();
index 81470fba4ad2752cb7f4a54f2ee8230a847cb479..62bd1d0e6d7c39c0185cc9e7adb163faf4db0d91 100644 (file)
@@ -19,9 +19,10 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
 
 #include <signal.h>
-#include <stdio.h>
 
 #include <config.h>
+
+#include <stdio.h>
 #include <ctype.h>
 
 #include "lisp.h"
index f843345d936cc899563e596d90b1801a5cffe451..5face5086a9e85387a9cd47476f3a6760afa9cb3 100644 (file)
@@ -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 <stdio.h>
-
 #include <config.h>
+
+#include <stdio.h>
 #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;
 }
 
index 6001e9b82d009c872391b5266d847dfa15d1a696..6922498983c9b73724cceb024b78aec6fd6e6c7b 100644 (file)
@@ -18,9 +18,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 <config.h>
 #include <stdio.h>
 #include <ctype.h>
-#include <config.h>
 #include "termchar.h"
 #include "termopts.h"
 #include "cm.h"
index 194d23933ab9adb77e36f49b2e7a430e0928592b..2bc5256f311eb37e5f4baadd91f3c83b1f2256cb 100644 (file)
@@ -19,8 +19,8 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
 /* Emacs 19 face widget ported by Fred Pierresteguy */
 
-#include <stdio.h>
 #include <config.h>
+#include <stdio.h>
 #include "lisp.h"
 #include "xterm.h"
 
index da2ca544931b84558931bd69fbb5009f6a70bdac..ca740d2ca13ff0fe8527c3f511b034e30b431f36 100644 (file)
@@ -29,11 +29,11 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
 /* 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"